(gnus-agent-expire-unagentized-dirs): Custom fix.
[gnus] / lisp / ChangeLog
1 2003-11-30  Simon Josefsson  <jas@extundo.com>
2
3         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Custom fix.
4
5 2003-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6
7         * gnus-agent.el (gnus-agent-covered-methods): Remove nil methods. 
8
9 2003-11-29  Kevin Greiner <kgreiner@xpediantsolutions.com>
10         * gnus-start.el (gnus-activate-group): The active range of the
11         group must include the articles known to the agent.
12
13         * gnus.el (gnus-agent-method-p): Accept a server name as the
14         method being tested.
15
16 2003-11-29  Alexander Kreuzer <alex@freesources.org>  (tiny change)
17
18         * nnrss.el (nnrss-check-group): Set xml when nnrss-use-local is t.
19
20 2003-11-29  Jesper Harder  <harder@ifa.au.dk>
21
22         * gnus-group.el (gnus-group-make-menu-bar): Add
23         gnus-group-make-rss-group.
24
25 2003-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
26
27         * message.el: Added custom-manual links to all variables that have
28         an index entry in the message manual.
29         (message-generate-headers-first): Fixed doc-string.
30
31 2003-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
32
33         * gnus-msg.el (gnus-summary-yank-message): Don't bind
34         gnus-display-mime-function to nil so that non-ascii text is
35         decoded and attachments are not shown.
36
37         * message.el (message-cite-original-without-signature): Replace
38         the value of message-reply-headers with the yanked article since
39         it may be a different article from the original.
40         (message-cite-original): Ditto.
41
42 2003-11-25  Teodor Zlatanov  <tzz@lifelogs.com>
43
44         * spam.el (spam-blacklist-ignored-regexes): new variable, so
45         blacklisting can ignore certain regular expressions (e.g. the
46         user's e-mail address)
47         (spam-bogofilter-spam-strong-switch,
48         spam-bogofilter-ham-strong-switch): options used when articles are
49         already registered as the opposite classification
50         (spam-old-ham-articles, spam-old-spam-articles): lists of ham and
51         spam articles, generated when a summary buffer is entered, and
52         consulted when it's exited so we know what articles are changing
53         state from spam to ham or vice-versa
54         (spam-xor): everyone needs a little convenience
55         (spam-list-of-processors): lookup table for old-style spam/ham
56         exits processors
57         (spam-group-processor-p): support old-style and new-style spam/ham
58         exit processors
59         (spam-group-processor-multiple-p): handle new-style spam/ham exit
60         processors
61         (spam-summary-prepare): use spam-old-{ham,spam}-articles; change
62         logic to iterate over list of processors instead of manual
63         individual lookup, unregister any articles that change from ham to
64         spam or vice-versa in the course of the summary buffer usage; use
65         the new spam-register-routine
66         (spam-ham-copy-routine, spam-ham-move-routine,
67         spam-mark-spam-as-expired-and-move-routine): check that the list
68         of groups is not nil, because apply doesn't like to apply a
69         function across nil
70         (spam-registration-functions): variable for looking up spam/ham
71         registration/unregistration functions based on a spam-use-* symbol
72         (spam-classification-valid-p, spam-process-type-valid-p)
73         (spam-registration-check-valid-p)
74         (spam-unregistration-check-valid-p): convenience functions
75         (spam-registration-function, spam-unregistration-function): look
76         up the registration/unregistration function based on a
77         classification and the check (spam-use-* symbol)
78         (spam-list-articles): generate list of spam/ham articles from a
79         given list of articles
80         (spam-register-routine): do the heavy work of registering and
81         unregistering articles, using all the articles in the group or
82         specific ones as needed
83         (spam-generic-register-routine): removed, no longer used
84         (spam-log-unregistration-needed-p, spam-log-undo-registration):
85         handle article registration/unregistration with a given spam/ham
86         processor and group
87         (BBDB, ifile, spam-stat, blacklists, whitelists, spam-report,
88         bogofilter, spamoracle): rewrite registration/unregistration
89         functions to take a list of articles and the unregister option.
90         Much hilarity ensues.
91         (spam-initialize): spam-stat-maybe-{save,load} already respect spam-use-stat
92         (spam-stat-register-ham-routine, spam-stat-register-spam-routine):
93         don't load and save unnecessarily
94
95         * spam-stat.el (spam-stat-dirty): new variable, set when the stats
96         database is modified
97         (spam-stat-buffer-is-spam, spam-stat-buffer-is-non-spam)
98         (spam-stat-buffer-change-to-spam, spam-stat-to-hash-table)
99         (spam-stat-buffer-change-to-non-spam): set spam-stat-dirty when
100         needed
101         (spam-stat-save): respect spam-stat-dirty, unless the force
102         parameter is specified
103         (spam-stat-load): clear spam-stat-dirty
104
105         * gnus.el (gnus-install-group-spam-parameters): marked the
106         old-style exit processors as obsolete in the docs, added the
107         new-style exit processors while the old ones are still allowed
108
109
110 2003-11-25  Jesper Harder  <harder@ifa.au.dk>
111
112         * gnus-art.el (article-hide-boring-headers): Don't hide Reply-To
113         unless its list of addresses is identical to From.
114
115 2003-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
116
117         * dgnushack.el (mapc): Add the compiler macro for Emacs 20.
118
119 2003-11-24  Kevin Greiner <kgreiner@xpediantsolutions.com>
120         * gnus-srvr.el (gnus-server-insert-server-line): The server names
121         used in gnus-agent are different (for example, the native server
122         uses the alias "native") from the names in gnus-srvr.
123         Compensating by adding a second text property storing the name
124         expected by gnus-agent.
125         (gnus-server-named-server): New function.
126         * gnus-agent.el (gnus-agent-remove-server, gnus-agent-add-server):
127         No longer expect an argument as it was ignored anyway.  Uses the
128         new gnus-server-named-server function to get gnus-agent compatible
129         names from the server buffer.
130
131 2003-11-20  Kevin Greiner <kgreiner@xpediantsolutions.com>
132
133         * gnus.el (gnus-agent-covered-methods): Documented use of
134         named servers, not methods, to identity agentized groups.
135         Users may now change their server configurations without having
136         the server become "unagentized".
137         (gnus-agent-covered-methods): Removed from gnus-variable-list to
138         avoid storing two copies of gnus-agent-covered-methods, one in
139         .newsrc.eld and the other in agent/lib/servers.
140         (gnus-server-to-method): Do not cache server for the nil method.
141         (gnus-method-to-server): New function.  Associate named server
142         with all, even foreign, methods.
143         (gnus-agent-method-p, gnus-agent-method-p-cache): Incorporated
144         simple last-response cache to offset performance lose of having to
145         always convert methods to named servers.
146         * gnus-agent.el (gnus-agent-expire-days): Removed obsolete
147         documentation.
148         (gnus-agentize, gnus-agent-add-server, gnus-agent-remove-server):
149         Modified to support new definition of gnus-agent-covered-method.
150         (gnus-agent-read-servers): Rewritten to convert old method data
151         into server names.
152         (gnus-agent-read-servers-validate)
153         (gnus-agent-read-servers-validate-native): New functions.
154         (gnus-agent-write-servers): No longer use gnus-method-simplify as
155         it failed to simplify foreign methods.
156         (gnus-agent-close-connections, gnus-agent-synchronize-flags)
157         (gnus-agent-possibly-synchronize-flags, gnus-agent-fetch-session)
158         (gnus-agent-regenerate): Uses new gnus-agent-covered-methods
159         function as gnus-agent-covered-methods variable no longer provides
160         methods.
161         (gnus-agent-covered-methods): New function
162         (gnus-agent-expire-group, gnus-agent-expire): Final message will,
163         if gnus-verbose is greater than 4, report statistics of NOV
164         entries and files deleted as well as total bytes recovered.
165         (gnus-agent-expire-done-message): New function
166         (gnus-agent-unread-articles): Bug fix.  No longer drops last
167         unread article onto read list.
168         (gnus-agent-regenerate-group): Changed prompt to use typical
169         style.
170         (gnus-agent-group-covered-p): Rewrote to internally use
171         gnus-agent-method-p.
172         * gnus-int.el (gnus-start-news-server): Partially convert old
173         gnus-agent-covered-methods to new format so that gnus-open-server
174         functions correctly.
175         * gnus-srvr.el (gnus-server-insert-server-line): Replaced
176         gnus-agent-covered-methods with gnus-agent-method-p.
177         * gnus-start.el (gnus-clear-system): Added
178         gnus-agent-covered-methods to compensate for removing it from
179         gnus-variable-list.
180         (gnus-setup-news): Complete conversion of old
181         gnus-agent-covered-methods to new format so that secondary and
182         foreign servers can be correctly opened.
183
184 2003-11-20  Teodor Zlatanov  <tzz@lifelogs.com>
185
186         * spam.el (spam-ham-copy-or-move-routine): add respooling
187         support, not working well yet
188
189         * gnus.el (ham-process-destination): make 'respool option the
190         only one, so it can't be chosen together with other groups
191
192 2003-11-19  Teodor Zlatanov  <tzz@lifelogs.com>
193
194         * gnus-registry.el (gnus-registry-track-extra): make it a set of
195         choices instead of a boolean
196         (gnus-registry-track-subject-p, gnus-registry-track-sender-p):
197         new convenience functions
198         (gnus-registry-split-fancy-with-parent): use convenience
199         functions, also don't return extra tracking info if sender or
200         subject is found in more than one groups
201         (gnus-registry-add-group): use new convenience functions to
202         decide if sender and subject should be tracked
203
204         * gnus.el (ham-process-destination): add 'respool option,
205         unused by spam.el yet
206
207 2003-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
208
209         * gnus-score.el (gnus-decay-score): Return a surely smaller value
210         than the argument in XEmacs.
211
212 2003-11-18  Reiner Steib  <Reiner.Steib@gmx.de>
213
214         * message.el (message-insert-to): Don't use `gnus-message'.
215         (message-header-synonyms): New variable.
216         (message-carefully-insert-headers): Use it (check for synonyms).
217         Added doc-string.  From Sam Steingold <sds@gnu.org>.
218
219 2003-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
220
221         * html2text.el (html2text-remove-tags): Remove the tag in a
222         simpler way to avoid inflooping.
223
224 2003-11-17  Simon Josefsson  <jas@extundo.com>
225
226         * imap.el (imap-gssapi-auth-p): Don't check capability (some
227         servers remove AUTH=GSSAPI from capability response returned after
228         successful authentication).
229
230 2003-11-16  Jesper Harder  <harder@ifa.au.dk>
231
232         * gnus.el (gnus-getenv-nntpserver): Fix regexp and simplify.
233         Reported by Artem Chuprina <ran@ran.pp.ru>.
234
235 2003-11-14  Simon Josefsson  <jas@extundo.com>
236
237         * mm-util.el (mm-charset-synonym-alist): Map BIG5-HKSCS to BIG5
238         when it isn't available.
239
240 2003-11-13  Alex Schroeder  <alex@gnu.org>
241
242         * nnrss.el (nnrss-check-group): Use dc:contributor if neither
243         rss:author nor dc:creator is provided.
244
245 2003-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
246
247         * mm-decode.el (mm-dissect-buffer): Save start="<id>" value
248         contained in Content-Type header of multipart/related messages.
249
250         * mm-view.el (mm-w3m-cid-retrieve-1): New function.
251         (mm-w3m-cid-retrieve): Use it.
252
253         * mml.el (mml-generate-mime-1): Add start="<id>" to Content-Type.
254         (mml-insert-mime-headers): Insert Content-ID header.
255         (mml-insert-mml-markup): Insert start="<id>" value.
256
257 2003-11-12  Teodor Zlatanov  <tzz@lifelogs.com>
258
259         * nnml.el (nnml-request-accept-article): pass sender to
260         nnmail-cache-insert
261
262         * nnmh.el (nnmh-request-accept-article): pass sender to
263         nnmail-cache-insert 
264
265         * nnmbox.el (nnmbox-request-accept-article): pass sender to
266         nnmail-cache-insert 
267
268         * nnfolder.el (nnfolder-request-accept-article): pass sender to
269         nnmail-cache-insert 
270
271         * nnbabyl.el (nnbabyl-request-accept-article): pass sender to
272         nnmail-cache-insert 
273
274         * nnmail.el (nnmail-cache-insert): accept sender parameter and
275         pass it to the nnmail-spool-hook
276
277         * gnus-registry.el (gnus-registry-track-extra): clarify doc
278         (gnus-registry-action): add sender lexical var and pass it to
279         gnus-registry-add-group
280         (gnus-registry-spool-action): take a sender parameter, pass to
281         gnus-registry-add-group
282         (gnus-registry-split-fancy-with-parent): trace by sender in
283         addition to subject
284         (gnus-registry-fetch-sender-fast): new function
285         (gnus-registry-add-group): accept sender parameter
286
287 2003-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
288
289         * spam.el (spam-ham-copy-routine, spam-ham-move-routine)
290         (spam-mark-spam-as-expired-and-move-routine): allow for the
291         groups to be a list of a single item
292
293         * gnus.el (gnus-install-group-spam-parameters):
294         ham-process-destination and spam-process-destination allow lists now
295
296 2003-11-10  Reiner Steib  <Reiner.Steib@gmx.de>
297
298         * message.el (message-insert-to): Do error out when the user
299         requested no Cc.  Don't insert empty To.  Can be added to
300         `message-setup-hook' now.  From Sam Steingold <sds@gnu.org>.
301         (message-mode-field-menu): Moved some entries, added
302         `message-insert-wide-reply'.
303         (message-change-subject): Fixed comment.
304
305 2003-11-10  Simon Josefsson  <jas@extundo.com>
306
307         * pgg-def.el (pgg-encrypt-for-me): Change default from nil to t.
308
309 2003-11-09  Simon Josefsson  <jas@extundo.com>
310
311         * pgg-gpg.el (pgg-gpg-encrypt-region): Cache passphrase under hex
312         key id too (for decryption).
313         (pgg-gpg-sign-region): Likewise.
314
315 2003-11-09  Simon Josefsson  <jas@extundo.com>
316
317         * pgg-gpg.el (pgg-gpg-all-secret-keys): New variable.
318         (pgg-gpg-lookup-all-secret-keys): New function.
319         (pgg-gpg-select-matching-key): Likewise.
320         (pgg-gpg-decrypt-region): Use new functions.  From Satyaki Das
321         <satyakid@stanford.edu>.
322
323 2003-11-07  Teodor Zlatanov  <tzz@lifelogs.com>
324
325         * nnmail.el (nnmail-cache-insert): make sure that the
326         nnmail-spool-hook is called with a valid newsgroup name (though
327         it may be wrong)
328
329         * gnus.el (gnus-group-real-prefix): return nil if group is not a
330         string, instead of triggering an error
331
332 2003-11-06  Teodor Zlatanov  <tzz@lifelogs.com>
333
334         * gnus.el (gnus-group-guess-full-name-from-command-method): new function
335
336         * gnus-registry.el (gnus-registry-fetch-group): use long names if
337         requested 
338         (gnus-registry-split-fancy-with-parent): when long names are in
339         use, strip the name if we're in the native server, or else return nothing
340         (gnus-registry-spool-action, gnus-registry-action): use
341         gnus-group-guess-full-name-from-command-method instead of
342         gnus-group-guess-full-name
343
344         * spam.el (spam-mark-spam-as-expired-and-move-routine)
345         (spam-ham-copy-or-move-routine): prevent article deletions or
346         moves unless the backend allows it
347
348         * gnus.el (gnus-install-group-spam-parameters): fixed parameters
349         to list spamoracle as well, suggested by Jean-Marc Lasgouttes
350         <Jean-Marc.Lasgouttes@inria.fr>
351
352         * spam.el (spam-spamoracle): doc change, suggested by Jean-Marc
353         Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
354
355 2003-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
356
357         * gnus-score.el (gnus-decay-score): Protect against arithmetic
358         errors.  Tiny patch from Norbert Koch <viteno@xemacs.org>.
359
360 2003-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
361
362         * spam.el
363         (spam-log-processing-to-registry): improved message and comments
364         (spam-log-unregistration-needed-p): new function
365         (spam-ifile-register-spam-routine)
366         (spam-ifile-register-ham-routine, spam-stat-register-spam-routine)
367         (spam-stat-register-ham-routine)
368         (spam-blacklist-register-routine)
369         (spam-whitelist-register-routine)
370         (spam-bogofilter-register-spam-routine)
371         (spam-bogofilter-register-ham-routine)
372         (spam-spamoracle-learn-ham, spam-spamoracle-learn-spam): change
373         spam-log-processing-to-registry invocations appropriately
374
375 2003-10-31  Simon Josefsson  <jas@extundo.com>
376
377         * imap.el (imap-kerberos4-open): Ignore output from ATHENA imtest.
378         Tiny patch from Derek Atkins <warlord@MIT.EDU>.
379         (imap-process-connection-type): Improve docstring.  Suggested by
380         Derek Atkins <warlord@MIT.EDU>.
381
382 2003-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
383
384         * spam.el (autoload): autoload the gnus-registry functions we'll
385         need
386         (spam-log-to-registry): new variable for interfacing with the
387         gnus-registry
388         (spam-install-hooks): variable had the wrong customization group
389         (spam-fetch-field-message-id-fast): convenience function for fetch
390         a message ID quickly
391         (spam-log-processing-to-registry): new function
392         (spam-ifile-register-spam-routine)
393         (spam-ifile-register-ham-routine, spam-stat-register-spam-routine)
394         (spam-stat-register-ham-routine)
395         (spam-blacklist-register-routine)
396         (spam-whitelist-register-routine)
397         (spam-bogofilter-register-spam-routine)
398         (spam-bogofilter-register-ham-routine)
399         (spam-spamoracle-learn-ham, spam-spamoracle-learn-spam): add
400         spam-log-processing-to-registry invocations
401
402         * gnus-registry.el: fixed docs in the preface to mention
403         gnus-registry-initialize
404         (gnus-registry-store-extra): remove cached extra entry
405         information when new extra entry is stored
406
407 2003-10-29  Simon Josefsson  <jas@extundo.com>
408
409         * message.el (message-forward-make-body-plain): Fix ARG=1 mode
410         after separating m-f-m-b.
411
412 2003-10-29  Simon Josefsson  <jas@extundo.com>
413
414         * message.el (message-forward-make-body-plain): Remove ignored
415         headers.  Tiny patch from Andre Srinivasan <andre@e2open.com>.
416         (message-forward-make-body-plain): Fix ARG=1.
417
418 2003-10-28  Jesper Harder  <harder@ifa.au.dk>
419
420         * message.el (message-forward-subject-name-subject)
421         (message-forward-subject-author-subject): Decode non-ASCII
422         newsgroup names.
423         (autoload): Autoload gnus-group-decoded-name.
424
425 2003-10-27  Simon Josefsson  <jas@extundo.com>
426
427         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): New optional
428         parameter key, overrides the key id used to store passphrase
429         under (uses true key id from gpg output if nil).
430         (pgg-gpg-encrypt-region): Search for passphrase using user suplied
431         string STR, instead of (pgg-lookup-key STR t).
432         (pgg-gpg-encrypt-region): Store passphrase under user suplied
433         string, instead of real key id taken from gpg output.
434         (pgg-gpg-decrypt-region): Likewise.
435         (pgg-gpg-sign-region): Likewise.
436         * pgg.el (pgg-decrypt-region): Don't set pgg-default-user-id.
437
438 2003-10-27  Romain FRANCOISE  <romain@orebokech.com>
439
440         * gnus-art.el (gnus-article-goto-prev-page): Doc fix. 
441
442 2003-10-27  Simon Josefsson  <jas@extundo.com>
443
444         * mm-bodies.el (mm-body-encoding): Don't use QP when message body
445         only consists of short lines and ASCII, when
446         mm-use-ultra-safe-encoding.  Refer to 'About foo' thread in
447         gnus-bug, e.g. <ilullrg4k7p.fsf@extundo.com>, for more discussion.
448         This make it possible to pipe the raw RFC 822 message into 'gpg'
449         and have the signature work.  Potential problem: what if message
450         contain data that would be dash-escaped by OpenPGP
451         implementations? Then PGP 2.x might not be able to parse the raw
452         RFC 822 message correctly.  If that problem is worth fixing, it
453         should be fixed by detecting the situation, instead of applying QP
454         to everything.  Based on discussion with "John A. Martin"
455         <jam@jamux.com>.
456
457 2003-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
458
459         * spam.el (spam-mark-spam-as-expired-and-move-routine)
460         (spam-ham-copy-or-move-routine): don't ask when deleting copied
461         articles, and use move instead of copy when possible
462         (spam-split): added the option of specifying a string as a
463         spam-split parameter; such a string will override
464         spam-split-group temporarily.
465
466         * nnmail.el (nnmail-cache-insert): protect from nil message IDs,
467         but should we do something else?
468
469         * gnus-registry.el (gnus-registry-spool-action): protect from nil
470         message IDs
471
472 2003-10-26  Simon Josefsson  <jas@extundo.com>
473
474         * gnus-art.el (gnus-button-alist): Allow & in mailto URLs.
475         (gnus-header-button-alist): Likewise.
476         (gnus-url-mailto): Handle ?to parameters.  Replace \r\n with \n.
477         Reverse parameter list to use same order as in the URL.  Reported
478         by f95-msv@f.kth.se (M\e,Ae\e(Brten Svantesson).
479
480 2003-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
481
482         * spam.el (spam-move-spam-nonspam-groups-only): documentation fix
483         for the variable
484
485 2003-10-25  Steve Youngs  <sryoungs@bigpond.net.au>
486
487         * Makefile.in (clean-some): Remove auto-autoloads.* and
488         custom-load.* as well.
489         (distclean): Ditto.
490
491         * dgnushack.el (dgnushack-make-load): Add a local vars section to
492         the dummy gnus-load.el.
493
494 2003-10-24  Teodor Zlatanov  <tzz@lifelogs.com>
495
496         * spam.el (spam-ham-copy-or-move-routine): do not delete if copy
497         is t, also don't intepret the list of groups as a list of lists
498         (spam-mark-spam-as-expired-and-move-routine)
499         (spam-ham-copy-or-move-routine): delete articles only if 1 or
500         more groups were specified (and "copy" was not specified for
501         spam-ham-copy-or-move-routine) (fixed twice)
502
503 2003-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
504
505         * nndoc.el (nndoc-guess-type): Reverse the sort order.  Suggested
506         by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
507         (nndoc-dissect-buffer): Don't miss even-numbered articles.
508
509 2003-10-24  Steve Youngs  <sryoungs@bigpond.net.au>
510
511         * dgnushack.el (dgnushack-gnus-load-file): Set to
512         "auto-autoloads.el" if building with XEmacs.
513         (dgnushack-cus-load-file): Set to "custom-load.el" if building
514         with XEmacs.
515         (dgnushack-make-cus-load): We don't delete the resulting file if
516         building with XEmacs so byte-compile it.
517         (dgnushack-make-load): When building with XEmacs do nothing except
518         byte-compile the autoload file and create a dummy gnus-load.el
519         file. 
520
521 2003-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
522
523         * message.el (message-make-fqdn): Bind case-fold-search.
524         Suggested by Christopher Richards <richards@CS.Princeton.EDU>.
525
526 2003-10-23  Teodor Zlatanov  <tzz@lifelogs.com>
527
528         * gnus.el (spam-process-destination, ham-process-destination):
529         allow multiple groups as a choice
530
531         * spam.el (spam-check-blackholes): remove "[IP address]"
532         requirement, now just "IP address" is enough for detection for
533         blackhole checking
534         (spam-check-blackholes): oops, the dots were not escaped
535         (spam-mark-spam-as-expired-and-move-routine): added multiple group
536         support (multiple copies, then delete)
537         (spam-ham-copy-routine): new function
538         (spam-ham-move-routine): new function
539         (spam-ham-copy-or-move-routine): new function (used to be
540         spam-ham-move-routine), handle multiple groups
541         (spam-summary-prepare-exit): call the new functions
542
543 2003-10-23  Simon Josefsson  <jas@extundo.com>
544
545         * flow-fill.el (fill-flowed-encode, fill-flowed): Autoload.
546
547 2003-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
548
549         * gnus-art.el (gnus-emphasis-strikethru): Use the :strike-through
550         attribute in Emacs.
551
552 2003-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
553
554         * message.el (message-bounce): Don't erase except bounced header.
555
556 2003-10-21  Teodor Zlatanov  <tzz@lifelogs.com>
557
558         * spam.el (spam-reverse-ip-string): new function to reverse an IP
559         address in a string
560         (spam-check-blackholes): use spam-reverse-ip-string
561
562 2003-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
563
564         * gnus-art.el (gnus-narrow-to-page): Clear as well as set the
565         value for gnus-page-broken.
566
567         * gnus-sum.el (gnus-summary-beginning-of-article): Use
568         gnus-break-pages instead of gnus-page-broken.
569         (gnus-summary-end-of-article): Use gnus-break-pages instead of
570         gnus-page-broken; narrow to the end of a page beforehand.
571         (gnus-summary-toggle-header): Use gnus-break-pages instead of
572         gnus-page-broken; remove delimiter buttons unless gnus-break-pages
573         is non-nil.
574
575 2003-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
576
577         * gnus-picon.el (gnus-picon-transform-address): Protect against
578         errors. 
579
580 2003-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
581
582         * gnus-msg.el (nnspool-rejected-article-hook): Remove defvar.
583         (xemacs-codename): Move defvar to gnus-util.el.
584
585         * gnus-util.el (xemacs-codename): Defvar when compiling.
586
587 2003-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
588
589         * spam-report.el (spam-report-url-ping-plain): Include a
590         User-Agent. 
591
592         * gnus-msg.el (gnus-extended-version): Use it.
593
594         * gnus-util.el (gnus-emacs-version): Separated out into own
595         function. 
596
597 2003-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
598
599         * message.el (message-mode-field-menu): Added
600         message-generate-unsubscribed-mail-followup-to.
601         (message-forward-subject-fwd): Avoid double "Fwd: "
602         (message-change-subject): Added comment.
603
604 2003-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
605
606         * gnus-sum.el (gnus-nov-parse-line): Remove condition-cases.
607
608         * mml.el (mml-insert-mime): Quote mml.
609
610 2003-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
611
612         * gnus-sum.el (gnus-remove-odd-characters): Use
613         mm-subst-char-in-string instead of subst-char-in-string.
614         (gnus-summary-refer-article): Use gnus-replace-in-string instead
615         of replace-regexp-in-string.
616
617 2003-10-19  Jesper Harder  <harder@ifa.au.dk>
618
619         * gnus-uu.el (gnus-uu-uustrip-article): Really strip directory
620         from file name.
621
622 2003-10-18  Jesper Harder  <harder@ifa.au.dk>
623
624         * gnus-sum.el (gnus-summary-save-parts-last-directory): Default
625         to mm-default-directory.
626         (gnus-summary-save-parts-1): Use mm-file-name-rewrite-functions.
627
628 2003-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
629
630         * pop3.el (pop3-read-response): Check whether the process is
631         alive. 
632
633         * gnus-sum.el (gnus-summary-refer-article): Strip spaces.
634
635         * rfc2047.el (rfc2047-encode-region): Do error out on invalid
636         strings. 
637
638         * nntp.el (nntp-retrieve-headers-with-xover): Get error messages
639         right. 
640
641         * gnus-agent.el (gnus-agent-read-servers): Remove sit-for.
642
643         * gnus-art.el (article-treat-dumbquotes): Doc fix.
644
645         * message.el (message-field-value): New function.
646         (message-insert-disposition-notification-to): Use Reply-To, too.
647
648         * imap.el (imap-mailbox-status): Upcase STATUS commands. 
649
650         * gnus-sum.el (gnus-remove-odd-characters): New function.
651         (gnus-nov-parse-line): Use it.
652
653 2003-10-18  Matt Swift  <swift@alum.mit.edu>
654
655         * mm-decode.el (mm-inline-media-tests): Recognize pjpeg as jpeg. 
656
657 2003-10-18  Romain FRANCOISE  <romain@orebokech.com>
658
659         * message.el (message-forward-make-body): does both
660         m-f-make-body-mml and m-f-make-body-plain, resulting in a strange
661         message buffer.
662
663 2003-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
664
665         * gnus-art.el (gnus-narrow-to-page): Only break page if it's
666         broken.
667
668         * nnrss.el (nnrss-find-rss-via-syndic8): Return nil if xml-rpc
669         isn't available.
670
671         * message.el (message-hidden-headers): Doc fix.
672
673 2003-10-18  Jesper Harder  <harder@ifa.au.dk>
674
675         * gnus-msg.el (gnus-summary-resend-message-edit): Avoid error when
676         fields aren't found.
677
678 2003-10-18  Simon Josefsson  <jas@extundo.com>
679
680         * message.el (message-forward-make-body-plain)
681         (message-forward-make-body-mime, message-forward-make-body-mml)
682         (message-forward-make-body-digest-plain)
683         (message-forward-make-body-digest-mime)
684         (message-forward-make-body-digest): New, derived from
685         message-forward-make-body.
686         (message-forward-make-body): Use them.
687         (message-forward-show-mml): New default 'best.
688         (message-forward-make-body): Support it.
689
690 2003-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
691
692         * gnus-art.el (gnus-article-mode): Set gnus-page-broken to nil.
693         (gnus-article-prepare): Don't set to t.
694         (gnus-narrow-to-page): Set to t if we break.
695
696 2003-06-11  Daniel N\e,Ai\e(Bri  <dne@mayonnaise.net>
697
698         * message.el (message-resend): Generate Resent-Message-ID header.
699
700 2003-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
701
702         * gnus-art.el (gnus-article-next-page): Don't go to the next line
703         before checking end-of-buffer.
704         (gnus-mime-delete-part): Don't insert parts twice.
705
706 2003-10-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
707
708         * gnus-art.el (article-update-date-lapsed): Make sure point
709         doesn't move around (much).
710
711 2003-07-28  Vasily Korytov  <deskpot@myrealbox.com>
712
713         * mail-source.el (mail-source-keyword-map): List "cur" before
714         "new" for maildirs.
715
716 2003-10-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
717
718         * gnus-sum.el (gnus-summary-enter-digest-group): ogroup, nor
719         group. 
720
721         * gnus-msg.el (gnus-inews-insert-archive-gcc): Use the parent
722         name for gcc-self.
723         (gnus-inews-insert-archive-gcc): Paren mistake.
724
725         * gnus-sum.el (gnus-summary-enter-digest-group): Add
726         parent-group. 
727
728         * gnus-art.el (gnus-ignored-headers): Add more headers.
729
730         * rfc2047.el (rfc2047-encode): See which encoding is shorter --
731         base64 or QP.
732
733         * nnmail.el (nnmail-article-group): Default to "bogus".
734
735         * mail-source.el (mail-source-delete-incoming): Change to nil.
736
737 2003-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
738
739         * mail-source.el (mail-source-fetch-imap): Fix mismatched parens.
740
741 2003-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
742
743         * mail-source.el (defvar): Add post/pre/scripts.
744         (mail-source-fetch-imap): Use them.
745
746         * nndraft.el (nndraft-request-move-article): Fix infinite
747         recursion. 
748
749         * gnus-group.el (gnus-group-mark-regexp): Jump to groups.
750
751 2003-10-16  Ed L. Cashin  <ecashin@uga.edu>
752
753         * imap.el (imap-interactive-login): Set imap-password to nil if
754         login fails.
755
756 2003-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
757
758         * message.el (message-inserted-headers): New variable.
759         (message-mode): Make local.
760         (message-mode): Set all the local action variables to nil.      
761
762 2003-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
763
764         * mm-decode.el (mm-inline-text-html-with-images): Doc fix.
765         (mm-w3m-safe-url-regexp): Doc fix.
766
767 2003-10-12  Jesper Harder  <harder@ifa.au.dk>
768
769         * gnus-sum.el (gnus-summary-respool-query): Don't narrow to head,
770         it's done by nnmail-article-group.
771
772         * gnus-uu.el (gnus-uu-grab-articles): Fix misplaced parens.
773         From Mark Hood <markhood@speakeasy.net> (tiny change)
774
775 2003-10-10  Jesper Harder  <harder@ifa.au.dk>
776
777         * mm-decode.el (mm-file-name-delete-gotchas): Avoid infloop in
778         XEmacs.
779
780 2003-10-10  Teodor Zlatanov  <tzz@lifelogs.com>
781
782         * spam.el (spam-initialize): new function, does the spam-face
783         update and all the hooks, replaces spam-install-hooks-function
784
785         * gnus-registry.el (gnus-registry-initialize): new autoloaded
786         function to explicitly initialize the registry
787
788 2003-10-10  Katsumi Yamaoka  <yamaoka@jpl.org>
789
790         * mm-decode.el (mm-w3m-safe-url-regexp): Doc fix.
791
792         * mm-view.el (mm-w3m-mode-map): Doc fix.
793         (mm-inline-text-html-render-with-w3m): Add a comment.
794
795 2003-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
796
797         * gnus-group.el: Remove superfluous eval-when-compiles.
798
799 2003-10-10  Jesper Harder  <harder@ifa.au.dk>
800
801         * gnus-group.el (gnus-group-suspend): Reset gnus-backlog-articles.
802
803 2003-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
804
805         * dns.el (query-dns): Don't error out on malformed resolv files.
806
807 2003-10-06  Jesper Harder  <harder@ifa.au.dk>
808
809         * gnus.el (gnus-group-faq-directory): Update .tw entry.  From
810         Albert Chun-Chieh Huang <mr894348@cs.nthu.edu.tw>
811
812 2003-10-03  Teodor Zlatanov  <tzz@lifelogs.com>
813
814         * spam.el (spam-check-blackholes): exit the loop if matches are
815         found (idea from Adrian Lanz <lanz@fowi.ethz.ch>)
816         (spam-check-bogofilter-headers, spam-check-blackholes, spam-check-BBDB)
817         (spam-from-listed-p): use nnmail-fetch-field instead of message-fetch-field
818         
819
820 2003-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
821
822         * mm-decode.el (mm-attachment-file-modes): Change the default
823         value into 384 from ?\600 which doesn't mean an integer in XEmacs.
824
825 2003-10-03  Jesper Harder  <harder@ifa.au.dk>
826
827         * mm-decode.el (mm-file-name-delete-control)
828         (mm-file-name-delete-gotchas): New functions.
829         (mm-file-name-rewrite-functions): Use them.
830         (mm-attachment-file-modes): New option.
831         (mm-save-part-to-file): Use it.
832
833 2003-10-02  Reiner Steib  <Reiner.Steib@gmx.de>
834
835         * spam.el (spam-install-hooks-function): Added Autoload cookie.
836
837 2003-10-02  Jesper Harder  <harder@ifa.au.dk>
838
839         * pgg-def.el (pgg-default-keyserver-address): Change to
840         subkeys.pgp.net.  From Michael Shields <shields@msrl.com>
841
842 2003-10-01  Simon Josefsson  <jas@extundo.com>
843
844         * message.el (message-idna-to-ascii-rhs-1): RHS can be terminated
845         by ',', as in 'foo@example.org, bar@example.org'.
846
847 2003-10-01  Jesper Harder  <harder@ifa.au.dk>
848
849         * message.el (message-send): Fix reversed logic of supersedes
850         check.
851
852 2003-09-30  Reiner Steib  <Reiner.Steib@gmx.de>
853
854         * gnus-art.el (gnus-article-view-part-as-charset): Doc fix,
855         suggested by Norbert Koch <viteno@xemacs.org>.
856
857 2003-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
858
859         * gnus-topic.el (gnus-topic-goto-missing-topic): Revert 2003-02-09
860         change in order to correct the position where an invisible topic
861         (because gnus-topic-display-empty-topics is nil) may be inserted.
862
863 2003-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
864
865         * message.el (message-ignored-supersedes-headers): Add X-Payment.
866
867 2003-09-20  Jesper Harder  <harder@ifa.au.dk>
868
869         * rfc2047.el (rfc2047-encode): Limit line length to 76 characters.
870
871 2003-09-20  Simon Josefsson  <jas@extundo.com>
872
873         * tls.el (tls-process-connection-type): Doc fix.
874
875         * imap.el (imap-starttls-open): Rewrite, should support both old
876         starttls.el and new starttls.el that uses GNUTLS.
877
878 2003-09-18  Katsumi Yamaoka  <yamaoka@jpl.org>
879
880         * gnus-art.el (gnus-treat-display-x-face): Use set-default instead
881         of custom-set-default which isn't available in old XEmacsen.
882
883 2003-09-17  Jesper Harder  <harder@ifa.au.dk>
884
885         * gnus-msg.el (gnus-summary-resend-message-edit): Don't convert
886         to MML.  MIME -> MML -> MIME does not work for PGP/MIME.
887
888         * message.el (message-bounce, message-forward-show-mml): do.
889         
890 2003-09-13  Jesper Harder  <harder@ifa.au.dk>
891
892         * rfc2047.el (rfc2047-charset-encoding-alist): Add viscii.
893         (rfc2047-encode): Add factors for big5, gb2312 and euc-kr.
894
895         * nnweb.el (nnweb-google-parse-1): Fix parsing.
896
897 2003-09-12  Jesper Harder  <harder@ifa.au.dk>
898
899         * gnus-group.el (gnus-group-fetch-control): ISC changed
900         compression from .Z to .gz.
901
902         * rfc2047.el (rfc2047-header-encoding-alist): Add "Approved" to
903         address-mime.
904
905 2003-09-11  Jesper Harder  <harder@ifa.au.dk>
906
907         * rfc2047.el (rfc2047-encode): Restrict encoded-words to 75
908         characters.
909
910 2003-09-10  Jesper Harder  <harder@ifa.au.dk>
911
912         * gnus.el (gnus-group-charter-alist): Update.
913
914 2003-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
915
916         * spam-report.el: use mm-url.el functions for external URL
917         loading when the built-in HTTP GET is insufficient (e.g. proxies
918         are in the way).  From Eric Knauel
919         <knauel@informatik.uni-tuebingen.de>.
920         (spam-report-url-ping-function): new option, defaults to the
921         built-in HTTP GET (spam-report-url-ping-plain)
922         (spam-report-url-ping): calls spam-report-url-ping-function now
923         (spam-report-url-ping-plain): new function, does what
924         spam-report-url-ping used to do
925         (spam-report-url-ping-mm-url): function that delegates to
926         mm-url.el (autoloaded)
927
928 2003-09-08  Teodor Zlatanov  <tzz@lifelogs.com>
929
930         * gnus-registry.el (gnus-registry-delete-id): function to
931         completely delete an ID, including all the cache hashtables
932         (gnus-registry-delete-group): use gnus-registry-delete-id
933         (gnus-registry-simplify-subject): only run if the argument is a
934         string, return nil otherwise
935
936 2003-09-07  Jesper Harder  <harder@ifa.au.dk>
937
938         * gnus-msg.el (gnus-summary-resend-bounced-mail): Docstring fix.
939
940 2003-09-05  Teodor Zlatanov  <tzz@lifelogs.com>
941
942         * gnus-registry.el (gnus-registry-split-fancy-with-parent): yet
943         another error *sigh*
944
945         * gnus-registry.el (gnus-registry-fetch-extra-entry): don't use
946         puthash unless gnus-registry-entry-caching is on
947         (gnus-registry-split-fancy-with-parent): misplaced parenthesis
948         made everything a part of the 'else'
949         (gnus-registry-save): used 'entry-caching' instead of 'caching'
950
951 2003-09-05  Jesper Harder  <harder@ifa.au.dk>
952
953         * gnus-art.el (gnus-button-alist): Improve Info regexp.
954
955 2003-09-04  Teodor Zlatanov  <tzz@lifelogs.com>
956
957         * gnus-registry.el: added brief explanation of basics
958         (gnus-registry-track-extra): new variable for tracking of message
959         subjects
960         (gnus-registry-entry-caching): caching parameter, used for extra
961         data
962         (gnus-registry-minimum-subject-length): minimum subject length
963         before it's considered when tracing subjects
964         (gnus-registry-save): accomodate extra data entry caching
965         (gnus-registry-action): change function name, add the subject and
966         pass it to gnus-registry-add-group
967         (gnus-registry-spool-action): change function name, add the
968         subject and pass it to gnus-registry-add-group
969         (gnus-registry-split-fancy-with-parent): add subject tracking
970         (gnus-registry-register-message-ids): pass subject to
971         gnus-registry-add-group
972         (gnus-registry-simplify-subject)
973         (gnus-registry-fetch-simplified-message-subject-fast): new
974         functions
975         (gnus-registry-fetch-extra, gnus-registry-fetch-extra-entry): add
976         extra data entry caching
977         (gnus-registry-add-group): handle the extra subject parameter
978         (gnus-registry-install-hooks, gnus-registry-unload-hook): fix the
979         gnus-register-* function names
980
981         * nnmail.el (nnmail-cache-insert): add subject parameter, pass it
982         on to the nnmail-spool-hook
983
984         * nnbabyl.el (nnbabyl-request-accept-article): added subject to
985         nnmail-cache-insert call
986
987         * nndiary.el (nndiary-request-accept-article): added subject to
988         nnmail-cache-insert call
989
990         * nnfolder.el (nnfolder-request-accept-article): added subject to
991         nnmail-cache-insert call
992
993         * nnimap.el (nnimap-split-articles): added subject to
994         nnmail-cache-insert call
995         (nnimap-request-accept-article): added subject to
996         nnmail-cache-insert call
997
998         * nnmbox.el (nnmbox-request-accept-article): added subject to
999         nnmail-cache-insert call
1000
1001         * nnmh.el (nnmh-request-accept-article): added subject to
1002         nnmail-cache-insert call
1003
1004         * nnml.el (nnml-request-accept-article): added subject to
1005         nnmail-cache-insert call
1006
1007 2003-09-04  Jesper Harder  <harder@ifa.au.dk>
1008
1009         * gnus-art.el (gnus-button-handle-info-url)
1010         (gnus-button-handle-info-url-gnome)
1011         (gnus-button-handle-info-url-kde, gnus-button-alist): Handle GNOME
1012         and KDE style Info URLs.
1013
1014         * gnus-util.el (gnus-url-unhex-string): Don't replace "+" with " ".
1015
1016 2003-09-02  Jesper Harder  <harder@ifa.au.dk>
1017
1018         * rfc2047.el (rfc2047-fold-region): Don't fold at the beginning
1019         of the field.
1020
1021 2003-09-01  Simon Josefsson  <jas@extundo.com>
1022
1023         * mml.el (mml-insert-mime-headers-always): New variable.
1024         (mml-insert-mime-headers): Use it.  Based on (tiny) patch from
1025         Lars Balker Rasmussen <lars@balker.org>.
1026
1027 2003-08-30  Simon Josefsson  <jas@extundo.com>
1028
1029         * mail-source.el (mail-source-fetch-imap): Pass correct buffer to
1030         imap-open, reverts 2003-03-17 change.  Reverse remove before
1031         calling gnus-compress-sequence.  From Gaute Strokkenes
1032         <gs234@srcf.ucam.org> (tiny change).
1033
1034 2003-08-29  Simon Josefsson  <jas@extundo.com>
1035
1036         * gnus-group.el (gnus-group-delete-group): Doc fix.  Suggested by
1037         Jochen K\e,A|\e(Bpper <jochen@jochen-kuepper.de>.
1038
1039 2003-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1040
1041         * gnus-art.el (article-display-x-face): Make it possible to set
1042         the gnus-article-x-face-command variable to the lambda form.
1043
1044 2003-08-27  Simon Josefsson  <jas@extundo.com>
1045
1046         * mm-decode.el (mm-remove-part): Try to kill external displayers
1047         cleanly first (if it refuses, C-g aborts loop and kill process
1048         unconditionally).  Also make sure process is dead before we remove
1049         the files it may be using.  Reported by David Coe
1050         <davidc@debian.org>.
1051
1052 2003-08-27  Jesper Harder  <harder@ifa.au.dk>
1053
1054         * gnus-cache.el (gnus-cache-generate-active): Fix bug in
1055         replacement.  From Vagn Johansen <v@johansen.mail.dk> (tiny
1056         change).
1057
1058 2003-08-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1059
1060         * gnus-art.el: Don't use defvaralias.
1061         (gnus-treat-display-x-face): Warn if the obsolete variable
1062         `gnus-treat-display-xface' exists.
1063
1064 2003-08-25  Jesper Harder  <harder@ifa.au.dk>
1065
1066         * gnus-art.el (gnus-treat-display-face): Fix typo.
1067         (gnus-treat-display-xface): Rename to gnus-treat-display-x-face
1068         (reported by Jochen K\e,A|\e(Bpper <jochen@jochen-kuepper.de>)
1069
1070 2003-08-24  Jesper Harder  <harder@ifa.au.dk>
1071
1072         * gnus-art.el (gnus-header-button-alist, gnus-button-alist): Fix
1073         type.
1074
1075 2003-08-22  Jesper Harder  <harder@ifa.au.dk>
1076
1077         * message.el (message-make-forward-subject-function): Fix
1078         customize mismatch.
1079
1080         * gnus.el (gnus-message-archive-method): do.
1081
1082 2003-08-20  Reiner Steib  <Reiner.Steib@gmx.de>
1083
1084         * gnus.el (gnus-read-group): Offer to continue only if the invalid
1085         char is `/' and add more information for the user.
1086
1087         * gnus-art.el (gnus-button-alist): Add `+' (gnus-button-handle-man).
1088         (gnus-header-button-alist): Added `In-Reply-To'.
1089
1090         * nnimap.el (nnimap-open-connection): Allow different user names
1091         on the same server (and in the same authinfo file).
1092
1093 2003-08-20  Jesper Harder  <harder@ifa.au.dk>
1094
1095         * gnus-sieve.el (gnus-sieve-crosspost): Fix type.
1096
1097         * message.el (message-make-forward-subject-function): Add
1098         message-forward-subject-name-subject to choices.
1099
1100         * gnus-art.el (gnus-article-edit-done, gnus-article-edit-exit):
1101         Redisplay article after editing.
1102
1103 2003-08-20  Simon Josefsson  <jas@extundo.com>
1104
1105         * gnus.el (gnus-read-group): Added check to ask confirmation if
1106         Group name contains invalid character. You can use '/' in IMAP,
1107         but not in filenames. G m cannot know what the user is creating,
1108         so let user decide. See thread m2oeysiev3.fsf@naima.lensflare.org.
1109         Tiny patch from letters@hotpop.com (Jari Aalto+mail.linux).
1110
1111 2003-08-13  Reiner Steib  <Reiner.Steib@gmx.de>
1112
1113         * gnus-score.el (gnus-summary-score-effect): Fix interactive use.
1114
1115 2003-08-10  Teodor Zlatanov  <tzz@lifelogs.com>
1116
1117         * gnus-draft.el (gnus-draft-send-all-messages): ask if all drafts
1118         should be sent unless gnus-expert-user is on
1119
1120 2003-08-09  Jesper Harder  <harder@ifa.au.dk>
1121
1122         * pgg-gpg.el (pgg-gpg-extra-args): Fix customization type.
1123
1124 2003-08-07  Jesper Harder  <harder@ifa.au.dk>
1125
1126         * pgg-gpg.el (pgg-gpg-process-region): Bind
1127         default-enable-multibyte-characters to nil.
1128
1129 2003-08-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1130
1131         * canlock.el (canlock-password): Fix customization type.
1132         (canlock-password-for-verify): Ditto.
1133         * deuglify.el (gnus-outlook-deuglify-unwrap-min): Ditto.
1134         (gnus-outlook-deuglify-unwrap-max): Ditto.
1135         (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
1136         * gnus-sum.el (gnus-sum-thread-tree-root): Ditto.
1137         (gnus-sum-thread-tree-false-root): Ditto.
1138         (gnus-sum-thread-tree-single-indent): Ditto.
1139         * message.el (message-archive-note): Ditto.
1140         (message-subscribed-address-file): Ditto.
1141         (message-user-fqdn): Ditto.
1142         * spam-report.el (spam-report-gmane-regex): Ditto.
1143         * spam.el (spam-blackhole-good-server-regex): Ditto.
1144
1145         * gnus-start.el (gnus-save-killed-list): Fix last change.
1146         * message.el (message-courtesy-message): Ditto.
1147
1148 2003-08-07  Jesper Harder  <harder@ifa.au.dk>
1149
1150         * gnus-art.el (gnus-header-face-alist): Revert previous change.
1151         (gnus-header-newsgroups-face): Explain that it's only used for
1152         crossposts.
1153
1154 2003-08-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1155
1156         * gnus-registry.el (gnus-registry-max-entries): Fix customization
1157         type.
1158         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
1159         * gnus.el (gnus-refer-article-method): Ditto.
1160         * message.el (message-courtesy-message): Ditto.
1161
1162 2003-08-06  Jesper Harder  <harder@ifa.au.dk>
1163
1164         * gnus-art.el (gnus-header-face-alist): Fix "Newsgroups" entry.
1165         From Chunyu Wang <spr@db.cs.hit.edu.cn> (tiny patch)
1166
1167 2003-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1168
1169         * gnus-start.el (gnus-save-killed-list): Fix customization type.
1170         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
1171         * gnus.el (gnus-use-long-file-name): Ditto.
1172
1173 2003-08-04  Jesper Harder  <harder@ifa.au.dk>
1174
1175         * gnus-group.el (gnus-group-rename-group): Don't allow renaming to
1176         an existing name.
1177
1178         * gnus-sum.el (gnus-summary-highlight): Add uncached to docstring.
1179
1180         * nnmail.el (nnmail-large-newsgroup): Docstring fix.
1181
1182         * nntp.el (nntp-large-newsgroup): do.
1183
1184         * nnspool.el (nnspool-large-newsgroup): do.
1185
1186         * gnus-cus.el (gnus-group-parameters): Typo.
1187
1188 2003-07-31  Simon Josefsson  <jas@extundo.com>
1189
1190         * mml-sec.el (mml-signencrypt-style-alist): Use separate S/MIME
1191         method by default (revert partial 2003-07-10 patch).
1192
1193 2003-07-28  Dave Love  <fx@gnu.org>
1194
1195         * pgg-gpg.el, pgg-pgp.el, pgg-pgp5.el: Require cl when compiling.
1196
1197 2003-07-26  Teodor Zlatanov  <tzz@lifelogs.com>
1198
1199         * gnus-registry.el (gnus-registry-install): add an initial
1200         registry read to the loading when gnus-registry-install is set
1201
1202 2003-07-26  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1203
1204         * flow-fill.el (fill-flowed): Empty lines separate paragraphs
1205         even if the preceding line ends with a soft break.  Tiny patch
1206         from Mark Thomas <swoon@bellatlantic.net>.
1207
1208 2003-07-25  Teodor Zlatanov  <tzz@lifelogs.com>
1209
1210         * spam.el (spam-use-regex-body, spam-regex-body-spam) 
1211         (spam-regex-body-ham): new variables, default to nil/empty/empty
1212         (spam-install-hooks): added spam-use-regex-body to list or
1213         pre-install conditions
1214         (spam-list-of-checks): added spam-use-regex-body and
1215         spam-check-regex-body to list of checks
1216         (spam-list-of-statistical-checks): added spam-use-regex-body to
1217         list of statistical checks
1218         (spam-check-regex-body): invokes spam-check-regex-headers with
1219         appropriate variable masking
1220         (spam-check-regex-headers): changes to print "body" or "header"
1221         where appropriate
1222
1223 2003-07-25  Jesper Harder  <harder@ifa.au.dk>
1224
1225         * smime.el (smime-ask-passphrase): Use read-passwd rather than
1226         comint-read-noecho.  The former is more secure.
1227
1228 2003-07-24  Teodor Zlatanov  <tzz@lifelogs.com>
1229
1230         * gnus-registry.el (gnus-registry-cache-whitespace): make "adding
1231         whitespace" message level 5 instead of 4
1232         (gnus-registry-clean-empty-function): new function to remove empty
1233         registry entries
1234         (gnus-registry-clean-empty): new variable to enable cleaning the
1235         registry when saving it by calling gnus-registry-clean-empty-function
1236
1237         * spam.el (spam-summary-prepare-exit): use spam-process-ham-in-spam-groups
1238         (spam-process-ham-in-spam-groups): new variable
1239
1240 2003-07-24  Jesper Harder  <harder@ifa.au.dk>
1241
1242         * pgg-gpg.el (pgg-gpg-process-region): Add "--yes" to options.
1243
1244         * pgg-gpg.el, pgg-pgp.el, pgg-pgp5.el, pgg.el: Reapply changes
1245         from 2003-04-03 to fix security problem.  See
1246         http://www.debian.org/security/2003/dsa-339
1247
1248 2003-07-23  Teodor Zlatanov  <tzz@lifelogs.com>
1249
1250         * gnus.el (gnus-install-group-spam-parameters): add the
1251         gnus-ticked-mark to the possible choices of ham marks
1252
1253         * spam.el (spam-process-ham-in-nonham-groups): new variable
1254         (spam-summary-prepare-exit): use spam-process-ham-in-nonham-groups
1255
1256 2003-07-23  Jesper Harder  <harder@ifa.au.dk>
1257
1258         * rfc2047.el (rfc2047-header-encoding-alist): Add Mail-Followup-To
1259         and Mail-Copies-To to address-mime.
1260         (rfc2047-narrow-to-field): Use rfc2047-point-at-bol.
1261
1262 2003-07-19  Jesper Harder  <harder@ifa.au.dk>
1263
1264         * mm-util.el (mm-coding-system-priorities): Docstring improvement.
1265
1266 2003-07-17  Jesper Harder  <harder@ifa.au.dk>
1267
1268         * gnus-sum.el (gnus-thread-latest-date): Move condition-case to
1269         the right place.
1270
1271 2003-07-14  Simon Josefsson  <jas@extundo.com>
1272
1273         * mail-source.el (mail-source-fetch-imap): Don't assume
1274         imap-error-text returns something.
1275
1276 2003-07-12  Nevin Kapur  <kapur@mts.jhu.edu>
1277
1278         * nnimap.el (nnimap-request-newgroups): Use the pattern in
1279         nnimap-list-pattern instead of "*".
1280
1281 2003-07-10  Simon Josefsson  <jas@extundo.com>
1282
1283         * mml-sec.el (mml-signencrypt-style-alist): Use "combined" by
1284         default.  Improve docstring.
1285
1286 2003-07-10  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1287
1288         * imap.el (imap-arrival-filter): Fix test for missing process
1289         buffer.
1290
1291 2003-07-09  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1292         From Gaute B Strokkenes <gs234@cam.ac.uk> (tiny patch).
1293
1294         * imap.el (imap-wait-for-tag): Clarify comment.  Use timeout zero
1295         for second, after-process-has-died, accept-process-output.
1296         (imap-arrival-filter): If PROC has no buffer, do nothing.
1297
1298 2003-07-09  Jesper Harder  <harder@ifa.au.dk>
1299
1300         * flow-fill.el: Docstring and message fixes.
1301
1302         * deuglify.el: do.
1303
1304         * gnus-int.el: do.
1305
1306         * gnus-msg.el: do.
1307
1308         * gnus-util.el: do.
1309
1310         * gnus-draft.el: do.
1311
1312         * gnus-start.el: do.
1313
1314         * gnus.el: do.
1315
1316         * gnus-group.el: do.
1317
1318         * gnus-art.el: do.
1319
1320         * gnus-sum.el: do.
1321
1322         * mail-source.el (mail-source-movemail): Handle non-numerical
1323         return values.
1324
1325 2003-07-08  Jesper Harder  <harder@ifa.au.dk>
1326
1327         * mailcap.el (mailcap-parse-args-syntax-table)
1328         (mailcap-viewer-passes-test): Docstring fix.
1329
1330         * mm-bodies.el (mm-long-lines-p): Docstring fix.
1331
1332         * mm-decode.el (mm-w3m-safe-url-regexp, mm-verify-option)
1333         (mm-decrypt-option, mm-handle-set-external-undisplayer)
1334         (mm-file-name-replace-whitespace): Docstring fix.
1335
1336         * mm-uu.el (mm-uu-emacs-sources-regexp): Docstring fix.
1337         (mm-uu-pgp-signed-test): Fix message.
1338
1339         * mml.el (mml-tweak-sexp-alist): Docstring fix.
1340         (mml-parse-1, mml-insert-mime-headers): Fix message.
1341
1342         * message.el (message-archive-header)
1343         (message-subscribed-address-functions)
1344         (message-subscribed-addresses, message-subscribed-regexps)
1345         (message-canlock-generate)
1346         (message-generate-new-buffer-clone-locals): Docstring fixes.
1347
1348 2003-07-07  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1349
1350         * imap.el (imap-wait-for-tag): After the process has died, look
1351         for more output still pending.  From Gaute B Strokkenes
1352         <gs234@cam.ac.uk> (tiny patch).
1353
1354 2003-07-07  Teodor Zlatanov  <tzz@lifelogs.com>
1355
1356         * spam.el (spam-bogofilter-score): redisplay article normally
1357         after spam-bogofilter-score is called
1358
1359 2003-07-06  Jesper Harder  <harder@ifa.au.dk>
1360
1361         * message.el (message-send-mail-with-sendmail): Handle
1362         non-numeric return values.
1363
1364         * gnus-sum.el (gnus-print-buffer): Apply emphasis.
1365         From Michael Piotrowski <mxp@dynalabs.de> (tiny change).
1366
1367         * gnus-start.el (gnus-clear-system): Revert change from
1368         2003-06-19.
1369
1370 2003-07-04  Dave Love  <fx@gnu.org>
1371
1372         * rfc2047.el (rfc2047-q-encode-region): Exclude especials from
1373         characters not encoded, and make the list more legible.
1374
1375 2003-07-04  Jesper Harder  <harder@ifa.au.dk>
1376
1377         * message.el (message-make-from): Revert change from 2002-01-08.
1378
1379 2003-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1380
1381         * nnheader.el (nnheader-init-server-buffer): Don't add
1382         nntp-server-buffer to list of Gnus buffers.
1383
1384 2003-06-25  Teodor Zlatanov  <tzz@lifelogs.com>
1385
1386         * spam.el (spam-parse-list): prevent empty ("") strings
1387
1388 2003-06-24  Teodor Zlatanov  <tzz@lifelogs.com>
1389
1390         * spam.el (spam-parse-list): use gnus-extract-address-components
1391         instead of ietf-drums-parse-addresses
1392         (spam-from-listed-p): let* was unnecessary
1393
1394 2003-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1395
1396         * gnus-ems.el (gnus-put-image): Mark the right text segment with
1397         gnus-image-category. 
1398
1399         * gnus-srvr.el (gnus-browse-unsubscribe-group): Strip prefix from
1400         native groups.
1401
1402         * gnus-topic.el (gnus-group-prepare-topics): Update topic line
1403         format specs.
1404
1405         * gnus-picon.el: Written by moi, moi, moi.
1406
1407         * gnus-group.el (gnus-group-kill-group): Clean up.
1408
1409 2003-06-23  Teodor Zlatanov  <tzz@lifelogs.com>
1410
1411         * spam.el (spam-from-listed-p, spam-parse-list): use
1412         ietf-drums-parse-addresses to extract the address portion of the
1413         whitelist/blacklist file if it looks like an address can be found
1414
1415 2003-06-23  Didier Verna  <didier@xemacs.org>
1416
1417         * gnus-ems.el (gnus-put-image): New argument CATEGORY. Add it as a
1418         text property.
1419         (gnus-remove-image): New argument CATEGORY. Only remove if
1420         category matches.
1421         * gnus-xmas.el (gnus-xmas-put-image):
1422         (gnus-xmas-remove-image): Ditto, with extents.
1423         * gnus-art.el (gnus-delete-images): Pass CATEGORY argument to
1424         gnus-[xmas-]remove-image.
1425         (article-display-face): Don't always act as a toggle. Call
1426         `gnus-put-image' with CATEGORY argument.
1427         (article-display-x-face): Call `gnus-put-image' with CATEGORY
1428         argument.
1429         * smiley.el (smiley-region): Ditto.
1430         * gnus-fun.el (gnus-display-x-face-in-from): Ditto.
1431         * gnus-picon.el (gnus-picon-insert-glyph): Ditto.
1432         (gnus-treat-mail-picon): Don't always act as a toggle.
1433         * gnus-picon.el (gnus-treat-newsgroups-picon): Ditto.
1434
1435 2003-06-23  Didier Verna  <didier@xemacs.org>
1436
1437         * gnus-art.el (article-display-face): Check for existence of the
1438         original article buffer before switching to it.
1439
1440 2003-06-20  Jesper Harder  <harder@ifa.au.dk>
1441
1442         * mm-util.el (mm-append-to-file): Say "Appended to".  Suggested by
1443         Dan Jacobson <jidanni@jidanni.org>.
1444
1445         * mm-view.el (mm-inline-message): Bind
1446         gnus-original-article-buffer to the buffer in the mml handle
1447         holding the message.
1448
1449 2003-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1450
1451         * message.el (sender, from): No need to bind them.
1452
1453 2003-06-19  Teodor Zlatanov  <tzz@lifelogs.com>
1454
1455         * spam.el (spam-enter-list): search-forward specified wrong
1456
1457 2003-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1458
1459         * gnus-art.el: Comment fix.
1460
1461 2003-06-20  Jesper Harder  <harder@ifa.au.dk>
1462
1463         * gnus-msg.el (gnus-configure-posting-styles): Remove unused
1464         variable.  From Jan Rychter <jan@rychter.com>.
1465
1466         * spam.el (spam-spamoracle-learn): insert-string is obsolete.
1467
1468 2003-06-19  Teodor Zlatanov  <tzz@lifelogs.com>
1469
1470         * spam.el (spam-enter-list): do not enter duplicate addresses into
1471         the whitelist/blacklist
1472
1473 2003-06-19  Jesper Harder  <harder@ifa.au.dk>
1474
1475         * nnheader.el (nnheader-init-server-buffer): Add
1476         nntp-server-buffer to gnus-buffers.
1477
1478         * gnus-start.el (gnus-clear-system): Now we don't need to kill
1479         nntp-server-buffer separately.
1480
1481 2003-06-18  Didier Verna  <didier@xemacs.org>
1482
1483         * gnus-art.el (article-display-face): Correctly toggle between
1484         display and hiding. Handle multiple Face headers.
1485
1486 2003-06-17  Dave Love  <fx@gnu.org>
1487
1488         * nnimap.el: Require cl when compiling.
1489
1490         * message.el (message-fix-before-sending): Reinstate nullifying
1491         the invisible text property.
1492         (sender, from): Defvar when compiling.
1493         (message-is-yours-p): Remove autoload cookie.
1494
1495 2003-06-17  Reiner Steib  <Reiner.Steib@gmx.de>
1496
1497         * gnus-util.el (gnus-extract-address-components): Added
1498         doc-string.
1499
1500 2003-06-16  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1501
1502         * nnml.el (nnml-current-group-article-to-file-alist): Don't read
1503         overview when using compressed files.  From Michael Albinus
1504         <Michael.Albinus@alcatel.de>.
1505
1506 2003-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1507
1508         * gnus-sum.el (gnus-summary-refer-parent-article): Extract
1509         Message-ID from In-Reply-To header.
1510
1511 2003-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1512
1513         * message.el (message-is-yours-p): Narrow to head; extract from
1514         and sender by itself.
1515         (message-cancel-news, message-supersede): Remove useless things.
1516
1517 2003-06-15  Reiner Steib  <Reiner.Steib@gmx.de>
1518
1519         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
1520         `gnus-article-emulate-mime'.
1521
1522 2003-06-15  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1523         From Tommi Vainikainen <thv+gnus@iki.fi>.
1524
1525         * message.el (message-is-yours-p): New function.  Separated common
1526         code from message-cancel-news and message-supersede.  Added
1527         matching code which uses message-alternative-emails regexp as last
1528         resort.
1529         (message-cancel-news, message-supersede): Use message-is-yours-p.
1530
1531 2003-06-13  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1532
1533         * nnimap.el (nnimap-split-articles): Narrow the right buffer to
1534         the headers.  From Niklas Morberg <niklas.morberg@axis.com>.
1535
1536 2003-06-12  Dave Love  <fx@gnu.org>
1537
1538         * nnheader.el (nnheader-functionp): Deleted.
1539
1540         * nnmail.el (nnmail-split-fancy-syntax-table): Define all in
1541         defvar.
1542         (nnmail-version): Deleted.
1543         (nnmail-check-duplication, nnmail-expiry-target-group): Don't use
1544         nnheader-functionp.
1545
1546 2003-06-10  Teodor Zlatanov  <tzz@lifelogs.com>
1547
1548         * spam.el (spam-check-bogofilter-headers): fix for when the score
1549         is requested but the message is not spam
1550
1551 2003-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
1552         From Eric
1553         <knauel@informatik.uni-tuebingen.de>
1554
1555         * spam.el (spam-use-spamoracle): new variable
1556         (spam-install-hooks): add spamoracle to the list of conditions
1557         for activation of spam-install-hooks
1558         (spam-spamoracle): new variable customization group
1559         (spam-spamoracle, spam-spamoracle): new variables
1560         (spam-group-spam-processor-spamoracle-p)
1561         (spam-group-ham-processor-spamoracle-p): new functions
1562         (spam-summary-prepare-exit): added spamoracle ham/spam exit processing
1563         (spam-list-of-checks, spam-list-of-statistical-checks): add
1564         spam-use-spamoracle
1565         (spam-check-spamoracle, spam-spamoracle-learn)
1566         (spam-spamoracle-learn-ham, spam-spamoracle-learn-spam): new functions
1567
1568         * gnus.el (gnus-group-spam-exit-processor-spamoracle)
1569         (gnus-group-ham-exit-processor-spamoracle): new variables for SpamOracle
1570         (spam-process, ham-process): added spamoracle spam/ham processors
1571
1572 2003-06-08  Jesper Harder  <harder@ifa.au.dk>
1573
1574         * message.el (message-beginning-of-line): Docstring improvement.
1575         Suggested by Michael R. Wolf <MichaelRunningWolf@att.net>
1576
1577 2003-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1578
1579         * gnus-sum.el (gnus-summary-make-menu-bar): Removed ["Add buttons"
1580         gnus-summary-display-buttonized t]
1581
1582 2003-06-07  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1583
1584         * nnmail.el (nnmail-split-fancy-match-partial-words): Doc string
1585         fix.  Reported by Johan Bockg\e,Ae\e(Brd <bojohan+news@dd.chalmers.se>.
1586
1587 2003-06-07  Jesper Harder  <harder@ifa.au.dk>
1588
1589         * message.el (message-beginning-of-line): Docstring improvement.
1590
1591 2003-06-06  Jesper Harder  <harder@ifa.au.dk>
1592
1593         * gnus-srvr.el (gnus-browse-foreign-server): Parse garbage NNTP
1594         groups correctly.
1595
1596 2003-06-06  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1597         From Benjamin Rutt <rutt+news@cis.ohio-state.edu>.
1598
1599         * message.el (message-fetch-field): Augment documentation to state
1600         the narrowed-to-headers restriction.
1601         (message-change-subject, message-reduce-to-to-cc)
1602         (message-generate-unsubscribed-mail-followup-to)
1603         (message-insert-importance-high, message-insert-importance-low)
1604         (message-insert-or-toggle-importance)
1605         (message-insert-disposition-notification-to): Narrow to headers
1606         before calling message-fetch-field or message-remove-header.
1607
1608 2003-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
1609
1610         * gnus-registry.el (gnus-registry-trim): fix for when
1611         gnus-registry-max-entries is nil
1612
1613 2003-06-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1614
1615         * qp.el (quoted-printable-decode-region): Don't error out on
1616         malformed text.
1617
1618 2003-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1619
1620         * rfc2047.el (rfc2047-encode-region): Don't error out on invalid
1621         strings.
1622
1623 2003-06-04  Jesper Harder  <harder@ifa.au.dk>
1624
1625         * mml1991.el (mml1991-pgg-sign): Insert pgg output as unibyte.
1626         From: Ivan Boldyrev <boldyrev+nospam@cgitftp.uiggm.nsc.ru> (tiny
1627         change)
1628
1629 2003-06-03  Dave Love  <fx@gnu.org>
1630
1631         * gnus-soup.el (gnus-soup-send-packet): Don't use
1632         message-functionp.
1633
1634         * gnus.el (gnus-agent-cache): Doc fix.
1635         (gnus-other-frame): Quote lambda used as hook.
1636
1637         * message.el: Doc fixes.
1638         (message-functionp): Deleted.  Callers changed.
1639         (message-fix-before-sending): Highlight with overlays.  Clarify
1640         `illegible text' messages.
1641         (rmail-enable-mime-composing, gnus-message-group-art): Defvar when
1642         compiling.
1643         (gnus-find-method-for-group, nnvirtual-find-group-art): Autoload.
1644
1645 2003-06-03  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1646
1647         * nnmail.el (nnmail-split-fancy-match-partial-words): New user
1648         option.
1649         (nnmail-split-it): Obey it.  Don't let-bind regexp twice.
1650
1651         * message.el (message-fetch-field): Mention narrow-to-headers
1652         requirement.
1653
1654 2003-06-03  Jesper Harder  <harder@ifa.au.dk>
1655
1656         * gnus-xmas.el (gnus-xmas-create-image): Use
1657         insert-file-contents-literally.  From: Eric Eide
1658         <eeide@cs.utah.edu>
1659
1660 2003-06-02  Teodor Zlatanov  <tzz@lifelogs.com>
1661
1662         * gnus-registry.el (gnus-registry-fetch-group): always return the
1663         short name of the group
1664
1665 2003-06-02  Jesper Harder  <harder@ifa.au.dk>
1666
1667         * gnus-cus.el (defvar): Silence byte-compiler warnings.
1668
1669         * gnus-sum.el (gnus-get-newsgroup-headers): Unfold headers.
1670
1671 2003-05-31  Jesper Harder  <harder@ifa.au.dk>
1672
1673         * gnus-art.el (article-unsplit-urls): Use gnus-treat-article
1674         rather than gnus-display-mime-function.
1675
1676 2003-05-30  Teodor Zlatanov  <tzz@lifelogs.com>
1677
1678         * gnus-registry.el (gnus-registry-use-long-group-names): new variable
1679         (gnus-registry-add-group): use it
1680         (gnus-registry-trim-articles-without-groups): new variable
1681         (gnus-registry-delete-group): use it
1682         (gnus-registry-unload-hook): uninstall all the hooks
1683
1684         * spam.el (spam-install-hooks-function, spam-unload-hook): new
1685         functions so users that load spam.el for customization don't get
1686         all the hooks installed
1687         (spam-install-hooks): new variable, set to t by default if user
1688         has one of the spam-use-* variables set
1689
1690         * spam-stat.el (spam-stat-install-hooks, spam-stat-unload-hook): new
1691         functions so users that load spam-stat.el for customization don't get
1692         all the hooks installed
1693
1694 2003-05-30  Dave Love  <fx@gnu.org>
1695
1696         * rfc2047.el (rfc2047-decode): Don't use
1697         mm-with-unibyte-current-buffer.
1698
1699         * qp.el (quoted-printable-decode-string): Use
1700         mm-with-unibyte-buffer.
1701
1702 2003-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
1703
1704         * gnus-registry.el (gnus-registry-save): allow forced saving even
1705         when registry is not dirty.  Use gnus-registry-trim to shorten the
1706         gnus-registry-alist.
1707         (gnus-registry-max-entries): new variable
1708         (gnus-registry-trim): new function, trim gnus-registry-alist to
1709         size gnus-registry-max-entries, sorting by entry mtime so the
1710         newest entries stick around
1711
1712         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): instead of
1713         just one specific variable, allow a list of specific variables
1714
1715 2003-05-28  Dave Love  <fx@gnu.org>
1716
1717         * rfc2047.el (rfc2047-encode-region): Skip ASCII at beginning and
1718         end of region.
1719
1720 2003-05-28  Jesper Harder  <harder@ifa.au.dk>
1721
1722         * lpath.el: Add put-char-table and get-char-table.
1723
1724 2003-05-28  Teodor Zlatanov  <tzz@lifelogs.com>
1725
1726         * gnus-registry.el (gnus-registry-dirty): flag for modified registry
1727         (gnus-registry-save, gnus-registry-read)
1728         (gnus-registry-store-extra, gnus-registry-clear): use it (note
1729         that gnus-registry-store-extra is invoked for all modifications to
1730         set the mtime, so gnus-registry-dirty only needs to be set there)
1731
1732 2003-05-23  Simon Josefsson  <jas@extundo.com>
1733
1734         * mml1991.el (mml1991-pgg-sign): Use mml-sender instead of
1735         message-sender.
1736
1737         * gnus-art.el (gnus-use-idna): Check if idna-program is installed.
1738
1739         * message.el (message-use-idna): Ditto.
1740
1741 2003-05-20  Dave Love  <fx@gnu.org>
1742
1743         * rfc2047.el (rfc2047-q-encoding-alist): Deleted.
1744         (rfc2047-q-encode-region): Don't use it.
1745         (rfc2047-encode-message-header) <(eq method 'mime)>: Bind
1746         rfc2047-encoding-type to `mime'.
1747         (rfc2047-encode-string, rfc2047-encode): Doc fix.
1748
1749 2003-05-20  Jesper Harder  <harder@ifa.au.dk>
1750
1751         * message.el (message-send-mail): Don't insert a courtesy copy
1752         notice in base64 encoded messages.
1753
1754 2003-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1755
1756         * gnus-sum.el (gnus-summary-move-article): Don't copy expirable
1757         marks if the destination group is not auto-expirable.
1758
1759 2003-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1760
1761         * dgnushack.el (assq-delete-all): Removed the compiler macro.
1762
1763 2003-05-14  Kevin Greiner <kgreiner@xpediantsolutions.com>
1764
1765         * gnus-agent.el (gnus-agentize): Updated documentation to match
1766         usage.
1767         (gnus-agent-expire-group-1): Do not skip over a group when the
1768         force argument is set.
1769         * gnus.el (gnus-agent): Updated documentation to reflect that
1770         gnus-agent now defaults to t.
1771
1772 2003-05-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1773
1774         * gnus.el (gnus-version-number): Bump.
1775
1776 2003-05-14 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
1777
1778         * gnus.el: Gnus v5.10.2 is released.
1779
1780 2003-05-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1781
1782         * mail-source.el (mail-source-delete-incoming): Changed to t.
1783
1784         * rfc2047.el (rfc2047-syntax-table): Funcall.
1785
1786         * lpath.el ((featurep 'xemacs)): Added set-char-table-range.
1787         ((featurep 'xemacs)): No, don't.
1788
1789         * rfc2047.el (rfc2047-encodable-p): Use the header charset.
1790
1791         * gnus-sum.el (gnus-summary-reselect-current-group): Supply
1792         leave-hidden.
1793
1794 2003-05-14  Jonathan Kamens  <jik@kamens.brookline.ma.us>
1795
1796         * gnus-sum.el (gnus-summary-exit): Added `leave-hidden'.  (Tiny
1797         patch.)
1798
1799 2003-05-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1800
1801         * gnus-registry.el (gnus-registry-store-extra-entry): Use
1802         gnus-assq-delete-all.
1803
1804         * gnus-xmas.el (gnus-xmas-assq-delete-all): New function.
1805
1806         * message.el (message-ignored-bounced-headers): Add Delivered-To.
1807
1808         * gnus-sum.el (gnus-summary-find-next): Indent.
1809         (gnus-summary-find-prev): Ditto.
1810         (gnus-summary-catchup): Doc fix.
1811         (gnus-summary-mark-current-read-and-unread-as-read): New function.
1812         (gnus-summary-catchup): Really mark after point.
1813
1814         * gnus-util.el (gnus-user-date): Use %d instead of %m.
1815         (gnus-user-date): Use floating point time so that we don't get
1816         overflows.
1817
1818         * gnus-sum.el (gnus-summary-local-variables): Clean up.
1819
1820         * gnus-fun.el (gnus-display-x-face-in-from): Don't use centering
1821         since none of the other image things do.
1822
1823 2003-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1824
1825         * dgnushack.el (assq-delete-all): New compiler macro for Emacs 20.
1826
1827 2003-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1828
1829         * lpath.el: Fbind find-coding-system.
1830
1831         * dgnushack.el (dgnushack-make-load): Remove redundant format call
1832         in message.  Suggested by Yoichi NAKAYAMA <yoichi@geiin.org>.
1833         * pop3.el (pop3-movemail): Ditto.
1834
1835 2003-05-12  Colin Marquardt <c.marquardt@alcatel.de>  (tiny change)
1836
1837         * gnus.el (gnus-agent): Docstring fix.
1838
1839 2003-05-12  Teodor Zlatanov  <tzz@lifelogs.com>
1840
1841         * gnus-registry.el (gnus-registry-install): new variable
1842         (gnus-registry-fetch-extra, gnus-registry-fetch-extra-entry)
1843         (gnus-registry-store-extra-entry, gnus-registry-delete-group)
1844         (gnus-registry-add-group): add a modification timestamp to each entry
1845         (gnus-registry-install-hooks): new function
1846
1847 2003-05-12  Kevin Greiner <kgreiner@xpediantsolutions.com>
1848
1849         * gnus-agent.el (gnus-agent-cat-name): Eval macro while compiling.
1850         (gnus-agent-cat-disable-undownloaded-faces): New function.
1851         Accessor for new agent property
1852         'agent-disable-undownloaded-faces'.
1853         gnus-cus.el (gnus-agent-parameters): Added
1854         agent-disable-undownloaded-faces and corrected documentation.
1855         (gnus-agent-cat-prepare-category-field,
1856         gnus-agent-customize-category): Changed to avoid creating free
1857         references to each field's symbol.
1858         gnus-sum.el (gnus-summary-use-undownloaded-faces): New local variable.
1859         (gnus-select-newgroup): Initialize it.
1860         (gnus-summary-highlight-line): Use it.
1861
1862 2003-05-12  Dave Love  <fx@gnu.org>
1863
1864         * mm-util.el (mm-read-charset): Deleted.
1865         (mm-coding-system-mime-charset): New.
1866         (mm-read-coding-system, mm-mule-charset-to-mime-charset)
1867         (mm-charset-to-coding-system, mm-mime-charset)
1868         (mm-find-mime-charset-region): Use it.
1869         (mm-default-multibyte-p): Fix non-mule case.
1870
1871         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-bol): Eval
1872         and compile.
1873         (rfc2047-syntax-table): Fix building table to work in Emacs 22.
1874         (rfc2047-unfold-region): Delete unused var `leading'.
1875
1876 2003-05-12  Simon Josefsson  <jas@extundo.com>
1877
1878         * pgg.el (pgg-temp-buffer-show-function): Reuse existing visible
1879         output window if one is available.  Tiny patch from Ville Skytt\e,Ad\e(B
1880         <scop@xemacs.org>.
1881
1882 2003-05-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1883
1884         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Added
1885         space.
1886
1887 2003-05-11  Jesper Harder  <harder@ifa.au.dk>
1888
1889         * gnus-sum.el (gnus-summary-enter-digest-group): Don't do article
1890         washing etc.
1891         (gnus-handle-ephemeral-exit): Don't reload article after exiting.
1892
1893         * nndoc.el (nndoc-type-alist): `mime-digest' should be before
1894         `mime-parts'.
1895
1896 2003-05-10  Jesper Harder  <harder@ifa.au.dk>
1897
1898         * gnus-cite.el (gnus-article-hide-citation-maybe): Make toggling
1899         work.  Update mode-line.
1900
1901 2003-05-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1902
1903         * gnus.el (gnus-logo-color-alist): Added no colours.
1904
1905 2003-05-09  Dave Love  <fx@gnu.org>
1906
1907         * utf7.el (mm-util): Require.
1908         (utf7-direct-encoding-chars, utf7-imap-direct-encoding-chars):
1909         Defconst, not defvar.
1910         (utf7-utf-16-coding-system): New.
1911         (utf7-encode-internal): Hoist concat out of loop.
1912         (utf7-fragment-encode): Use mm-with-unibyte-current-buffer.
1913         (utf7-get-u16char-converter) [utf7-utf-16-coding-system]: New
1914         case.
1915         (utf7-latin1-u16-char-converter): Encode the region.
1916         (utf7-u16-latin1-char-converter): Decode the region.
1917         (utf7-encode, utf7-decode): Fix multibyteness.
1918
1919         * mm-bodies.el (mm-body-7-or-8): Don't special-case mule.
1920         (mm-encode-body): Use mm-read-coding-system, not mm-read-charset.
1921         (mm-uu-yenc-decode-function): Defvar when compiling.
1922         (mm-encode-body, mm-decode-body): Doc fix.
1923
1924 2003-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
1925
1926         * gnus-registry.el (gnus-registry-unregistered-group-regex):
1927         removed in favor of the group/topic/global variables
1928         (gnus-registry-register-message-ids): fixed test to omit
1929         gnus-registry-unregistered-group-regex
1930
1931         * gnus.el (gnus-variable-list): removed gnus-registry-alist and
1932         gnus-registry-headers-alist from the list
1933         (gnus-registry-headers-alist): removed
1934         (registry-ignore): new parameter, with accompanying
1935         gnus-registry-ignored-groups global variable
1936
1937         * gnus-start.el (gnus-clear-system): no need to clear the
1938         registry, we can do it ourselves
1939         (gnus-gnus-to-quick-newsrc-format): extra parameters so it can be
1940         used by gnus-registry.el
1941
1942         * gnus-registry.el (gnus-registry-cache-file): new file variable
1943         (gnus-registry-cache-read, gnus-registry-cache-save): new
1944         functions
1945         (gnus-registry-cache-whitespace): new function.  From Dan
1946         Christensen <jdc@chow.mat.jhu.edu>
1947         (gnus-registry-save, gnus-registry-read): use the new
1948         gnus-registry-cache-{read|save} functions, and change the name
1949         from gnus-registry-translate-{from|to}-alist
1950         (gnus-registry-clear): fixed so it doesn't refer to old function name
1951
1952 2003-05-09  Jesper Harder  <harder@ifa.au.dk>
1953
1954         * gnus-picon.el (gnus-picon-transform-address): Parse the encoded
1955         address.
1956
1957 2003-05-08  Teodor Zlatanov  <tzz@lifelogs.com>
1958
1959         * gnus-start.el (gnus-clear-system): added gnus-registry-alist to
1960         the list of cleared variables
1961
1962         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
1963         nnmail-split-fancy-with-parent-ignore-groups can be a single regex
1964         in addition to a list of regexes.
1965
1966         * spam.el (spam-use-regex-headers): docstring fix.  From Niklas
1967         Morberg <niklas.morberg@axis.com>
1968
1969 2003-05-08  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
1970
1971         * gnus-sum.el (gnus-summary-next-page): Mention
1972         `gnus-article-skip-boring' in docstring.
1973
1974 2003-05-08  Jesper Harder  <harder@ifa.au.dk>
1975
1976         * rfc2231.el (rfc2231-parse-string): "=" should have whitespace
1977         syntax here.
1978
1979         * ietf-drums.el (ietf-drums-syntax-table): "=" should not have
1980         whitespace syntax class when parsing email addresses.
1981
1982         * message.el (message-forward-subject-name-subject): Don't use
1983         mail-decode-encoded-word-string before parsing from.
1984
1985 2003-05-07  ShengHuo ZHU  <zsh@cs.rochester.edu>
1986
1987         * message.el (message-setup-1): Setup alternative email before
1988         generate-headers.
1989
1990         (message-forward-subject-name-subject): Fix the case when the
1991         field "from" doesn't exist.
1992
1993 2003-05-07  Dave Love  <fx@gnu.org>
1994
1995         * rfc2047.el (rfc2047-encode-region): Skip \n as whitespace.
1996
1997         * mm-util.el (mm-find-mime-charset-region): Expurgate utf-16 from
1998         possible values.
1999
2000 2003-05-07  Jesper Harder  <harder@ifa.au.dk>
2001
2002         * message.el (message-kill-to-signature): Fix.
2003
2004 2003-05-06  Jesper Harder  <harder@ifa.au.dk>
2005
2006         * gnus-sum.el (gnus-auto-goto-ignores): Docstring fix.
2007
2008         * gnus-art.el (gnus-mime-display-multipart-as-mixed)
2009         (gnus-mime-display-multipart-related-as-mixed)
2010         (gnus-button-mid-or-mail-heuristic-alist): do.
2011
2012 2003-05-05  Dave Love  <fx@gnu.org>
2013
2014         * mm-util.el (mm-default-multibyte-p): New.
2015         (mm-coding-system-p): Maybe use find-coding-systems.
2016
2017 2003-05-04  Dave Love  <fx@gnu.org>
2018
2019         * rfc2047.el (with-syntax-table): Define if necessary.
2020         (rfc2047-syntax-table): Fix last change for XEmacs.
2021         (rfc2047-parse-and-decode): Revert last change.
2022
2023 2003-05-03  Jesper Harder  <harder@ifa.au.dk>
2024
2025         * gnus.el: Don't test for `mm-guess-mime-charset'.
2026
2027         * mm-util.el (mm-guess-mime-charset): Remove.  Not used any more.
2028
2029         * gnus.el (gnus-default-charset): Set default value to
2030         `undecided'.
2031
2032         * gnus-art.el (article-decode-charset): Don't supply 4th arg to
2033         mm-decode-body.
2034
2035         * mm-bodies.el (mm-decode-coding-region-safely): Remove.
2036         (mm-decode-body): Don't use mm-decode-coding-region-safely.
2037
2038 2003-05-03  Vasily Korytov <deskpot@despammed.com>  (tiny change)
2039
2040         * gnus-util.el (gnus-multiple-choice): Add ", ?".
2041
2042 2003-05-03  Dave Love  <fx@gnu.org>
2043
2044         * rfc2047.el (rfc2047-syntax-table): Don't call make-char-table
2045         with 2 args.
2046         (rfc2047-decode-string): Don't set the buffer multibyte before
2047         calling buffer-string.
2048
2049         * mm-encode.el (mm-long-lines-p): Autoload.
2050         (mm-encode-content-transfer-encoding): Doc fix.  Don't make buffer
2051         unibyte.  Signal error on unknown encoding.
2052         (mm-encode-buffer, mm-qp-or-base64): Doc fix.
2053
2054         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): New.
2055         Callers of gnus- versions changed to use them.
2056         (rfc2047-header-encoding-alist): Add `address-mime' part.  Doc
2057         fixes.
2058         (rfc2047-encoding-type): New.
2059         (rfc2047-encode-message-header): Use mm-charset-to-coding-system.
2060         Don't include header name field in encoding.  Add `address-mime'
2061         case and bind rfc2047-encoding-type for `mime' case.
2062         (rfc2047-encodable-p): Deleted.
2063         (rfc2047-syntax-table): New.
2064         (rfc2047-encode-region, rfc2047-encode): Rewritten to take account
2065         of rfc2047 rules with respect to rfc2822 tokens and to do encoding
2066         in place rather than by passing strings.
2067         (rfc2047-encode-string): Doc fix.
2068         (rfc2047-q-encode-region): Don't use
2069         mm-with-unibyte-current-buffer.
2070         (rfc2047-encoded-word-regexp): eval-and-compile.
2071         (rfc2047-decode-region): Avoid concatenation in loop.
2072         (rfc2047-parse-and-decode): Remove useless disjunction.
2073
2074 2003-05-02  Dave Love  <fx@gnu.org>
2075
2076         * rfc2047.el (rfc2047-q-encode-region, rfc2047-decode): Use
2077         mm-with-unibyte-current-buffer.
2078         (ietf-drums, gnus-util): don't require.
2079
2080         * sieve.el (sieve-manage-mode-menu): Define before use.
2081
2082         * mml-smime.el (message-narrow-to-headers): Autoload.
2083
2084         * mm-util.el (mm-coding-system-p): Don't override nil from
2085         coding-system-p.
2086         (mm-mule4-p, mm-disable-multibyte-mule4)
2087         (mm-with-unibyte-current-buffer-mule4): Deleted.
2088         (mm-multibyte-p): Use defun, not defalias.
2089         (mm-make-temp-file): Moved to group at top of file.
2090         (mm-point-at-eol, mm-point-at-bol): New.
2091
2092         * gnus-cite.el (gnus-art): Require.
2093
2094         * gnus-ems.el (gnus-get-buffer-create)
2095         (nnheader-find-etc-directory, message-text-with-property):
2096         Autoload.
2097         (gnus-tmp-unread, gnus-tmp-replied, gnus-tmp-score-char)
2098         (gnus-tmp-indentation, gnus-tmp-opening-bracket, gnus-tmp-lines)
2099         (gnus-tmp-name, gnus-tmp-closing-bracket, gnus-tmp-subject-or-nil)
2100         (gnus-check-before-posting): Only defvar when compiling.
2101
2102         * gnus-int.el (gnus-agent-expire): Autoload, don't defun.
2103
2104         * gnus-util.el (rmail-default-rmail-file, mm-text-coding-system):
2105         Defvar when compiling.
2106         (gnus-output-to-rmail): Require mm-util.
2107
2108         * mail-source.el (mail-source-callback): Use mm-make-temp-file.
2109         (mail-source-make-complex-temp-name): Deleted.
2110
2111         * message.el (message-use-idna): Use mm-coding-system-p.
2112         (message-tokenize-header, message-make-organization)
2113         (message-make-from):  Use with-temp-buffer.
2114         (message-set-work-buffer): Deleted.
2115         (message-fill-paragraph): Use `if' not `and' for compiler warning.
2116         (message-check-news-header-syntax): Remove useless lambda.
2117         (message-forward-make-body): Use mm-disable-multibyte,
2118         mm-with-unibyte-current-buffer, mm-enable-multibyte.
2119         (message-replace-chars-in-string): Deleted.
2120
2121         * mm-extern.el (mm-extern-local-file): Use mm-disable-multibyte.
2122         (mm-extern-url): Use mm-with-unibyte-current-buffer,
2123         mm-disable-multibyte.
2124         (mm-extern-anon-ftp): Use mm-disable-multibyte.
2125
2126         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt): Use
2127         mm-with-unibyte-current-buffer.
2128
2129         * mml2015.el (mml): Require.
2130         (mml2015-mailcrypt-encrypt, mml2015-gpg-encrypt): Use
2131         mm-with-unibyte-current-buffer.
2132
2133         * nnheader.el (gnus-util): Require.
2134
2135         * nntp.el (format-spec, format-spec-make, open-tls-stream):
2136         Autoload.
2137
2138         * rfc2231.el (mail-header-remove-comments, mm-encode-body)
2139         (mail-header-remove-whitespace): Autoload.
2140
2141         * sieve-manage.el (starttls-negotiate): Autoload.
2142
2143 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2144
2145         * nnrss.el (nnrss-find-rss-via-syndic8): Indent.
2146
2147 2003-05-01  Mark A. Hershberger  <mah@everybody.org>
2148
2149         * nnrss.el (nnrss-find-rss-via-syndic8): Don't error out.
2150
2151 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2152
2153         * gnus.el (gnus-version-number): Bump.
2154
2155 2003-05-01  Teodor Zlatanov  <tzz@lifelogs.com>
2156
2157         * spam-report.el (spam-report-gmane-regex): docstring fix.  From
2158         Jon Ericson <Jon.Ericson@jpl.nasa.gov> (tiny change)
2159
2160         * gnus.el (gnus-install-group-spam-parameters): docstring fix.
2161         From Jon Ericson <Jon.Ericson@jpl.nasa.gov> (tiny change)
2162
2163         * gnus-registry.el (gnus-registry-fetch-extra)
2164         (gnus-registry-store-extra, gnus-registry-group-count): new functions
2165         (gnus-registry-fetch-group, gnus-registry-delete-group)
2166         (gnus-registry-add-group): changed to work with extra data element
2167         if present
2168
2169 2003-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2170
2171         * gnus.el: Gnus v5.10.1 is released.
2172
2173 2003-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2174
2175         * gnus.el: Oort Gnus v0.24 is released.
2176
2177 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2178
2179         * dgnushack.el (when): Check whether defadvice is fbound.
2180
2181 2003-05-01  Teodor Zlatanov  <tzz@lifelogs.com>
2182
2183         * gnus-registry.el (gnus-registry-unregistered-group-regex): new variable
2184         (gnus-registry-register-message-ids): use it
2185
2186 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2187
2188         * gnus.el (gnus-version-number): Bump.
2189
2190         * gnus.el: Update copyright for several files.
2191
2192 2003-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2193
2194         * gnus.el: Oort Gnus v0.23 is released.
2195
2196 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2197
2198         * spam-stat.el (spam-stat-test-directory): Compare against zero.
2199
2200 2003-05-01  Trey Jackson <tjackson@ichips.intel.com>  (tiny change)
2201
2202         * spam-stat.el (spam-stat-test-directory): Skip 0 length files.
2203
2204 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2205
2206         * message.el (message-forward-subject-name-subject): Decode
2207         string when forwarding.
2208
2209 2003-05-01  Oystein Viggen  <oysteivi@tihlde.org>
2210
2211         * dgnushack.el (when): Add defadvice.
2212
2213 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2214
2215         * gnus.el (gnus-version-number): Bump.
2216
2217 2003-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2218
2219         * gnus.el: Oort Gnus v0.22 is released.
2220
2221 2003-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2222
2223         * gnus.el: Oort Gnus v0.21 is released.
2224
2225 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2226
2227         * gnus.el (gnus-version-number): Bump.
2228
2229 2003-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2230
2231         * gnus.el: Oort Gnus v0.20 is released.
2232
2233 2003-05-01  Vasily Korytov  <deskpot@despammed.com>
2234
2235         * gnus-dired.el (gnus-dired-mode-map): Move to C-c C-l.
2236
2237 2003-04-30  Mark A. Hershberger  <mah@everybody.org>
2238
2239         * mm-url.el (mm-url-insert-file-contents): set url-current-object
2240         in the case where mm-url-use-external is set.
2241
2242         * nnrss.el (nnrss-request-article): Change the messages created to
2243         multipart/alternative.  Hopefully fixes a problem interaction with
2244         w3m.
2245         (nnrss-find-rss-via-syndic8): Better handling if xml-rpc.el isn't
2246         around.
2247
2248 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2249
2250         * message.el (message-check-news-header-syntax): Alter "posting"
2251         message.
2252
2253         * nnrss.el (nnrss-node-text): Don't use char classes.
2254
2255 2003-05-01  David Z. Maze  <dmaze@mit.edu>
2256
2257         * nnrss.el (nnrss-find-rss-via-syndic8): Have an `error' branch
2258         in condition-case.
2259
2260 2003-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2261
2262         * message.el (message-required-headers): Remove In-Reply-To.
2263
2264         * gnus-int.el (gnus-open-server): Revert changes.
2265
2266 2003-04-30  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
2267
2268         * gnus-int.el (gnus-open-server): Try to open unagentized servers
2269         even when unplugged.
2270
2271 2003-04-30  Reiner Steib  <Reiner.Steib@gmx.de>
2272
2273         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fixed typo in
2274         doc-string.
2275
2276 2003-05-01  Steve Youngs  <youngs@xemacs.org>
2277
2278         * lpath.el: Add a section for non-Mule XEmacsen.
2279         fbind `find-charset-string' and `coding-system-base' in that
2280         section.
2281
2282         * gnus-util.el (gnus-completing-read-maybe-default): New.
2283         (gnus-completing-read): Use it.
2284
2285         * mm-view.el (mm-view-pkcs7-decrypt): Ditto.
2286
2287         * gnus-art.el (gnus-read-string): New.
2288         (gnus-summary-pipe-to-muttprint): Use it.
2289
2290         * gnus-xmas.el (gnus-xmas-open-network-stream): New.
2291
2292         * dns.el (dns-make-network-process): Use it.
2293
2294         Take care of some differences between XEmacs 21.1 and newer
2295         versions of XEmacs.
2296
2297 2003-04-30  Teodor Zlatanov  <tzz@lifelogs.com>
2298
2299         * gnus-registry.el (gnus-registry-split-fancy-with-parent): added
2300         diagnostic message
2301         (gnus-registry-grep-in-list): don't run when word is nil
2302         (gnus-registry-fetch-message-id-fast): new function
2303         (gnus-registry-delete-group, gnus-registry-add-group): make sure
2304         the id and group are not nil
2305         (gnus-registry-register-message-ids): new function
2306         (gnus-register-action): optimized logical flow
2307         (gnus-summary-prepare-hook): added gnus-registry-register-message-ids
2308
2309 2003-04-30  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
2310
2311         * gnus-delay.el (gnus-delay-article): Call
2312         `gnus-agent-queue-setup' to create the delay group.
2313
2314         * gnus-agent.el (gnus-agent-queue-setup): Support optional arg
2315         for the (queue) group name.
2316
2317 2003-04-30  Simon Josefsson  <jas@extundo.com>
2318
2319         * mm-util.el (mm-charset-to-coding-system): Use user specified
2320         charset unless coding-system-get is fboundp.
2321
2322 2003-04-30  Kevin Greiner <kgreiner@xpediantsolutions.com>
2323
2324         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-name):
2325         Wrapped in eval-when-compile.
2326         (gnus-agent-mode): Bind gnus-agent-go-online to nil as you
2327         shouldn't be asked twice to go online with each server.
2328         (gnus-agent-get-undownloaded-list, gnus-agent-fetch-articles,
2329         gnus-agent-crosspost, gnus-agent-flush-cache,
2330         gnus-agent-fetch-session, gnus-agent-unread-articles,
2331         gnus-agent-uncached-articles, gnus-agent-regenerate-group,
2332         gnus-agent-group-covered-p): Expanded pop macros used for
2333         effect. Avoids compilation warning in emacs 21.3.
2334
2335         * gnus-int.el (gnus-open-server): Restructured to only open
2336         nnagent when gnus-plugged is nil.
2337
2338 2003-04-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2339
2340         * lpath.el: Fbind string-to-multibyte.
2341
2342 2003-04-30  Steve Youngs  <youngs@xemacs.org>
2343
2344         * dgnushack.el: Add some missing autoloads for XEmacs 21.1.
2345
2346 2003-04-29  Teodor Zlatanov  <tzz@lifelogs.com>
2347
2348         * gnus-registry.el (gnus-registry-fetch-group): faster
2349         (gnus-registry-delete-group): new function
2350         (gnus-registry-add-group): new function
2351         (gnus-register-spool-action): use it
2352         (gnus-register-action): use it
2353         (gnus-registry-translate-from-alist)
2354         (gnus-registry-translate-to-alist): remove the headers registry
2355         for now
2356
2357 2003-04-29  Reiner Steib  <Reiner.Steib@gmx.de>
2358
2359         * gnus-art.el (gnus-button-alist): Fixed CTAN regexp.
2360
2361 2003-04-29  Teodor Zlatanov  <tzz@lifelogs.com>
2362
2363         * spam-report.el (spam-report-gmane): gnus-summary-article-number
2364         is not necessary, just use the function parameter
2365
2366 2003-04-29  Karl Pflysterer  <sigurd@12move.de>
2367
2368         * spam-stat.el (spam-stat-save): No longer font-locks the file
2369         when saving
2370
2371 2003-04-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2372
2373         * canlock.el: Bind mail-header-separator when compiling (XEmacs
2374         provides it in mail-lib/auto-autoloads.el).
2375
2376 2003-04-29  Simon Josefsson  <jas@extundo.com>
2377
2378         * mml2015.el (mml2015-pgg-sign): Use mml-sender instead of
2379         message-sender.
2380
2381         * mml.el (mml-generate-mime-1): Set mml-sender too.
2382
2383 2003-04-29  Jesper Harder  <harder@ifa.au.dk>
2384
2385         * gnus-sum.el (gnus-summary-display-while-building): Docstring fix.
2386
2387         * mm-url.el (mm-url-use-external): do.
2388
2389 2003-04-29  Simon Josefsson  <jas@extundo.com>
2390
2391         * canlock.el (mail-fetch-field): Autoload it (fix xemacs compile
2392         warnings).
2393
2394         * sieve-mode.el (c-mode): Ditto.
2395
2396         * pgg.el (run-at-time): Ditto.
2397
2398         * mm-url.el (require): Require timer when compiling for
2399         with-timeout macro (fix xemacs compile warnings).
2400
2401 2003-04-28  Dave Love  <fx@gnu.org>
2402
2403         * gnus-util.el (nnheader): Don't require.
2404         (Nnheader-narrow-to-headers, nnheader-replace-chars-in-string):
2405         Autoload.
2406
2407         * spam.el: Require cl when compiling.
2408
2409         * dns.el: Require cl when compiling.
2410
2411 2003-04-28  Jesper Harder  <harder@ifa.au.dk>
2412
2413         * gnus-art.el (gnus-article-goto-next-page)
2414         (gnus-article-goto-prev-page): Revert 2003-02-12 change to make
2415         gnus-pick-mode work.
2416
2417 2003-04-28  Steve Youngs  <youngs@xemacs.org>
2418
2419         * Makefile.in (FLAGS): Use @FLAGS@.
2420
2421 2003-04-27  Reiner Steib  <Reiner.Steib@gmx.de>
2422
2423         * gnus-art.el (gnus-mime-display-multipart-as-mixed)
2424         (gnus-mime-display-multipart-alternative-as-mixed)
2425         (gnus-mime-display-multipart-related-as-mixed): Added doc-strings,
2426         allow customization.
2427
2428 2003-04-27  Kevin Greiner <kgreiner@xpediantsolutions.com>
2429
2430         * dgnushack.el (dgnushack-compile-verbosely): New function.  Not
2431         currently called (See source for explanation).
2432
2433 2003-04-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2434
2435         * gnus-sum.el (gnus-summary-catchup): Don't mark ticked messages.
2436         (gnus-summary-mark-read-and-unread-as-read): Take an optional
2437         mark.
2438
2439         * gnus.el (gnus-version-number): Bump.
2440
2441 2003-04-27 06:47:31 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2442
2443         * gnus.el: Oort Gnus v0.19 is released.
2444
2445 2003-04-27  Kevin Greiner <kgreiner@xpediantsolutions.com>
2446
2447         * gnus-registry.el (gnus-register-spool-action): Replaced literal
2448         carriage-return character with its escape sequence.
2449
2450 2003-04-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2451
2452         * gnus-sum.el (gnus-summary-catchup-from-here): Doc fix.
2453
2454         * nnrss.el (nnrss-node-text): Use only one
2455         gnus-replace-in-string.
2456
2457         * gnus.el: Remove gnus-functionp throughout.
2458
2459         * gnus-util.el (gnus-functionp): Removed.
2460
2461         * gnus-msg.el (gnus-summary-wide-reply-with-original): Doc fix.
2462
2463         * message.el (message-required-headers): Add In-Reply-To.
2464
2465 2003-04-27  Marshall T. Vandegrift  <vandem2@rpi.edu>
2466
2467         * gnus-fun.el (gnus-face-from-file): Bind coding-system-for-read
2468         to binary.
2469
2470 2003-04-27  Jesper Harder  <harder@ifa.au.dk>
2471
2472         * mml.el (mml-preview): do.
2473
2474         * message.el (message-mode): do.
2475
2476         * gnus-undo.el (gnus-undo-mode): do.
2477
2478         * gnus-topic.el (gnus-topic-mode): do.
2479
2480         * gnus-sum.el (gnus-summary-mode, gnus-summary-edit-article): do.
2481
2482         * gnus-msg.el (gnus-setup-message)
2483         (gnus-inews-add-send-actions, gnus-configure-posting-styles): do.
2484
2485         * gnus-gl.el (gnus-grouplens-mode): do.
2486
2487         * gnus-art.el (gnus-mime-save-part-and-strip)
2488         (gnus-mime-delete-part): Use it.
2489
2490         * gnus-util.el (gnus-make-local-hook): New function.
2491
2492 2003-04-25  Simon Josefsson  <jas@extundo.com>
2493
2494         * nnrss.el (nnrss-node-text): Don't use a star.
2495         (nnrss-node-text): Use g-r-i-s, not g-r-r-i-s which doesn't exist.
2496
2497 2003-04-24  Dave Love  <fx@gnu.org>
2498
2499         * mm-encode.el (mm-long-lines-p): Autoload.
2500         (mm-encode-content-transfer-encoding): Don't try to make buffer
2501         unibyte before decoding.  Don't ignore errors for base64 encoding.
2502
2503         * qp.el (quoted-printable-decode-region): Use mm-insert-byte.
2504         Signal error on malformed text, as for base64.
2505         (quoted-printable-encode-region): DTRT in Emacs 22.
2506
2507         * mm-util.el (mm-make-temp-file, mm-insert-byte): New.
2508         (mm-auto-save-coding-system): Consider utf-8-emacs.
2509         (mm-mime-mule-charset-alist, mm-mule-charset-to-mime-charset)
2510         (mm-charset-to-coding-system, mm-mime-charset)
2511         (mm-find-mime-charset-region): Check for :mime-charset coding
2512         systems property.
2513
2514         * mml-sec.el (mml2015, mml1991): Don't require.
2515         (mml2015-sign, mml2015-encrypt, mml1991-sign, mml1991-encrypt)
2516         (message-goto-body, mml-insert-tag): Autoload.
2517
2518         * mm-decode.el (mm-tmp-directory): Re-write to help avoid warnings.
2519
2520         * gnus-start.el (message-make-date): Autoload rather than
2521         requiring message.
2522
2523         * gnus-group.el (gnus-group-name-charset-group-alist): Use
2524         mm-coding-system-p.
2525         (gnus-cache-active-altered): Defvar when compiling.
2526         (gnus-group-delete-group): Re-write to help avoid warnings.
2527
2528         * gnus-art.el (gnus-use-idna): Use mm-coding-system-p.
2529
2530         * pgg.el: Split eval-when-compile forms.
2531
2532 2003-04-24  Reiner Steib  <Reiner.Steib@gmx.de>
2533
2534         * gnus-group.el (gnus-large-ephemeral-newsgroup)
2535         (gnus-fetch-old-ephemeral-headers): News variables.
2536         (gnus-group-read-ephemeral-group): Use them.
2537
2538 2003-04-24  Simon Josefsson  <jas@extundo.com>
2539
2540         * sieve.el (sieve-upload): Don't use replace-regexp-in-string.
2541
2542         * nnrss.el (nnrss-node-text): Ditto.
2543
2544 2003-04-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2545
2546         * gnus-msg.el (gnus-inews-do-gcc): Make sure the obsolete variable
2547         gnus-inews-mark-gcc-as-read exists.
2548
2549 2003-04-23  Simon Josefsson  <jas@extundo.com>
2550
2551         * gnus-sieve.el (gnus-sieve-generate): Rewrite regexp search so it
2552         doesn't exceed the regexp stack space.
2553
2554 2003-04-23  Jesper Harder  <harder@ifa.au.dk>
2555
2556         * gnus-msg.el (gnus-inews-mark-gcc-as-read): Don't defvar it.
2557
2558         * gnus-art.el (gnus-article-hide-pgp-hook): do.
2559
2560 2003-04-23  Reiner Steib  <Reiner.Steib@gmx.de>
2561
2562         * mml.el (mml-preview): Bind `=', RET, and mouse-2.
2563
2564 2003-04-23  Jesper Harder  <harder@ifa.au.dk>
2565
2566         * mm-bodies.el (mm-decode-body): Don't override supplied charset.
2567
2568 2003-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2569
2570         * dgnushack.el (merge, copy-list): Remove compiler macros.
2571         (butlast): Add a compiler macro.
2572
2573 2003-04-22  Paul Jarc  <prj@po.cwru.edu>
2574
2575         * gnus-util.el (gnus-merge): Added "type" argument to match CL
2576         merge and gnus-sum.el's expectations.
2577
2578 2003-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
2579
2580         * gnus-art.el (gnus-button-url-regexp): Added nntp.
2581
2582         * message.el (message-generate-headers-first): Default to
2583         '(references).
2584
2585         * gnus-art.el (gnus-mime-delete-part): Require confirmation.
2586
2587 2003-04-21  Jesper Harder  <harder@ifa.au.dk>
2588
2589         * smime.el (smime-decrypt-region): Insert From header.
2590
2591 2003-04-21  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
2592
2593         * gnus-fun.el (gnus-face-from-file, gnus-convert-png-to-face):
2594         Max length of header is 726, not 740.  From Gaute B Strokkenes
2595         <gs234@cam.ac.uk>.
2596
2597 2003-04-20  Jesper Harder  <harder@ifa.au.dk>
2598
2599         * nndb.el, mml1991.el: Fix license template.
2600
2601 2003-04-20  Simon Josefsson  <jas@extundo.com>
2602
2603         * nnimap.el (nnimap-split-articles): Don't download body unless
2604         required.
2605
2606         * imap.el (imap-gssapi-open, imap-ssl-open): Erase buffer before
2607         starting process, like imap-kerberos4-open does.
2608
2609         * mml-smime.el, rfc1843.el, dig.el, smime.el, uudecode.el: Fix
2610         license template.
2611
2612         * mml-sec.el: Fix license template.
2613
2614         * gnus-sieve.el, sieve.el, sieve-manage.el, sieve-mode.el: Fix
2615         license template.
2616
2617         * pgg-def.el, pgg.el, pgg-gpg.el, pgg-parse.el, pgg-pgp5.el,
2618         pgg-pgp.el: Fix license template.
2619
2620 2003-04-19  Jesper Harder  <harder@ifa.au.dk>
2621
2622         * gnus-sum.el (gnus-summary-delete-article): Improve docstring.
2623
2624 2003-04-19  Teodor Zlatanov  <tzz@lifelogs.com>
2625
2626         * spam.el (spam-move-spam-nonspam-groups-only): dumb typo fix
2627
2628 2003-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
2629
2630         * spam.el (spam-split): allow a particular check as a parameter,
2631         e.g. (: spam-split 'spam-use-bogofilter)
2632         (spam-mark-only-unseen-as-spam): new parameter, see doc
2633         (spam-mark-junk-as-spam-routine): use
2634         spam-mark-only-unseen-as-spam, simplify routine to take advantage
2635         of gnus-newsgroup-unread as well as gnus-newsgroup-unseen
2636
2637 2003-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
2638
2639         * gnus.el (gnus-group-short-name, gnus-group-prefixed-p): new functions
2640         (gnus-group-guess-full-name): don't prefix the group twice
2641
2642         * nnmail.el (nnmail-split-fancy-with-parent): docstring fix
2643
2644         * gnus-registry.el (gnus-registry-clear)
2645         (gnus-registry-fetch-group, gnus-registry-grep-in-list)
2646         (gnus-registry-split-fancy-with-parent): new functions
2647         (gnus-register-spool-action, gnus-register-action): simplified the format
2648         (gnus-registry): new customization group
2649         (gnus-registry-unfollowed-groups): new variable
2650
2651 2003-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2652
2653         * gnus-art.el (gnus-button-alist): Add nntp: urls.
2654         (gnus-header-button-alist): Ditto.
2655
2656 2003-04-17  Dave Love  <fx@gnu.org>
2657
2658         * gnus-util.el (gnus-string-equal): Revert last change.
2659
2660 2003-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2661
2662         * gnus-srvr.el (gnus-browse-make-menu-bar): Fix typo.
2663
2664 2003-04-17  Mike Woolley  <mike@ariel.co.uk>
2665
2666         * gnus-sum.el (gnus-sum-thread-tree-false-root): New variable.
2667
2668 2003-04-15  Michael Shields  <shields@msrl.com>
2669
2670         * gnus-art.el (article-hide-boring-headers): Hide Reply-To: if
2671         the broken-reply-to group parameter is set.  Idea from Vasily
2672         Korytov <deskpot@myrealbox.com>.
2673
2674 2003-04-17  Steve Youngs  <youngs@xemacs.org>
2675
2676         * dgnushack.el: 'setenv' is in env.el for XEmacsen <= 21.4, but in
2677         process.el in XEmacsen >= 21.5.
2678
2679 2003-04-17  Steve Youngs  <youngs@xemacs.org>
2680
2681         * dgnushack.el: Add a whole swag of autoloads and defaliases to
2682         satisfy the byte-compiler when building with XEmacs.
2683
2684         * lpath.el (maybe-bind): Add 'w3-meta-content-type-charset-regexp'
2685         and 'w3-meta-charset-content-type-regexp' in XEmacs.  The upstream
2686         W3 doesn't have these.
2687
2688         * mailcap.el: Maybe require 'lpr in XEmacs.
2689
2690 2003-04-16  Simon Josefsson  <jas@extundo.com>
2691
2692         * mml2015.el (mml2015-pgg-sign): Bind pgg-default-user-id to MML
2693         sender tag, if available.
2694
2695 2003-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
2696
2697         * gnus-registry.el (gnus-register-action)
2698         (gnus-register-spool-action, hashtable-to-alist)
2699         (gnus-registry-translate-from-alist, alist-to-hashtable)
2700         (gnus-registry-translate-to-alist, gnus-registry-headers-hashtb):
2701         new variables and function fixes
2702
2703         * gnus.el (gnus-registry-headers-alist): new variable to hold
2704         article header data
2705         (gnus-variable-list): save gnus-registry-headers-alist
2706
2707         * spam-report.el (Module): new module for spam reporting
2708
2709         * gnus.el (spam-process): added
2710         gnus-group-spam-exit-processor-report-gmane to the list of choices
2711         (gnus-install-group-spam-parameters): defined new spam exit processor
2712
2713         * spam.el (autoload): autoload spam-report-gmane when needed
2714         (spam-report-gmane-register-routine): glue for spam-report.el
2715         (spam-group-spam-processor-report-gmane-p): glue for the
2716         gnus-group-spam-exit-processor-report-gmane spam processor
2717         (spam-summary-prepare-exit): check the report-gmane spam processor
2718         and run spam-report-gmane-register-routine if it's active
2719
2720         From John Wiegley <johnw@gnu.org>
2721
2722         * spam.el (spam-bogofilter-score): check bogofilter headers before
2723         checking bogofilter itself
2724
2725 2003-04-16  Dave Love  <fx@gnu.org>
2726
2727         * gnus-agent.el: Wrap defsetf in eval-when-compile.
2728         (gnus-agent-cat-defaccessor): Don't use gensym.
2729
2730         * mml1991.el: Require cl, mm-util when compiling.
2731         (quoted-printable-decode-region, quoted-printable-encode-region):
2732         Autoload.
2733
2734         * pgg.el: Require cl when compiling.
2735
2736         * nnmail.el (gnus): Require.
2737
2738         * gnus-util.el: Move provide to end.
2739         (gnus-string-equal): Maybe use compare-strings.
2740         (gnus-merge): New.
2741
2742         * gnus-sum.el (gnus-summary-prepare-threads): Don't use copy-list.
2743         (gnus-summary-insert-articles): Use gnus-merge.
2744
2745         * gnus-fun.el: Require cl and mm-util when compiling.
2746
2747         * gnus-diary.el (gnus-diary-delay-format-french)
2748         (gnus-diary-delay-format-english): Don't use setf with nthcdr.
2749
2750         * nndiary.el (nndiary-compute-reminders): Don't use setf with
2751         nthcdr.
2752
2753 2003-04-16  Kevin Greiner <kgreiner@xpediantsolutions.com>
2754
2755         * gnus-agent.el (gnus-agent-make-cat): Added optional parameter to
2756         specify a predicate other than false.
2757         (gnus-category-read): Use the new feature to create a 'default'
2758         category with a 'short' predicate.
2759
2760 2003-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2761
2762         * message.el (message-unique-id): Comment change.
2763
2764         * gnus-art.el (gnus-article-next-page-1): New function.
2765         (gnus-article-next-page): Use it.
2766
2767 2003-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
2768
2769         * spam.el (spam-split): added save-restriction to save-excursion
2770
2771 2003-04-15  Reiner Steib  <Reiner.Steib@gmx.de>
2772         From Julien Avarre <julien@avarre.com>
2773
2774         * gnus-fun.el: Fixed autoload cookie.
2775
2776 2003-04-15  Paul Jarc  <prj@po.cwru.edu>
2777         From Remi Letot  <remi.letot@easynet.be>
2778
2779         * nnmaildir.el (nnmaildir-request-scan): Use gnus-remove-if
2780         instead of remove-if.
2781
2782 2003-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2783
2784         * gnus-msg.el (gnus-summary-news-other-window): Use delq and
2785         copy-sequence instead of remove which is a cl run-time function in
2786         Emacs 20.
2787
2788 2003-04-14  Jesper Harder  <harder@ifa.au.dk>
2789
2790         * gnus-msg.el (gnus-summary-news-other-window): Make a buffer
2791         local copy of gnus-discouraged-post-methods with the current
2792         method removed.
2793
2794 2003-04-14  Simon Josefsson  <jas@extundo.com>
2795
2796         * mailcap.el (mailcap-mime-data): Add application/pgp-keys.
2797
2798 2003-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
2799
2800         * mm-util.el (mm-sort-coding-systems-predicate): Convert elements
2801         of `mm-coding-system-priorities' to base coding system.
2802
2803         * gnus-sum.el: Added coding cookie ("middle dot" in
2804         gnus-summary-morse-message).
2805
2806 2003-04-13  Simon Josefsson  <jas@extundo.com>
2807
2808         * gnus-art.el (article-fill-long-lines)
2809         (article-verify-x-pgp-sig, article-decode-group-name)
2810         (gnus-mime-button-menu): Split >80 character lines.
2811
2812 2003-04-13  Jesper Harder  <harder@ifa.au.dk>
2813
2814         * gnus-sum.el (gnus-summary-local-variables): Use defvar since
2815         we're let-binding it.
2816
2817         * nnmbox.el (nnmbox-mbox-buffer): It's not a constant.
2818
2819 2003-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2820
2821         * message.el (message-hide-headers): Don't do intangible.
2822
2823         * gnus.el (gnus-group-prefixed-name): Comment out the test for
2824         colon.
2825
2826         * gnus-srvr.el (gnus-browse-read-group): Don't give the real name
2827         to the ephemeral entry, but the prefixed name.
2828
2829         * gnus.el (gnus-group-prefixed-name): Clean up.
2830
2831 2003-04-13  Kevin Greiner <kgreiner@xpediantsolutions.com>
2832
2833         * gnus-agent.el (gnus-agent-group-pathname): Bind
2834         gnus-command-method so that gnus-agent-directory will always
2835         return a valid directory.
2836         * gnus-cache.el (gnus-cache-enter-article): Remove article from
2837         gnus-newsgroup-undownloaded so that the summary will display the
2838         article as downloaded.
2839         (gnus-cache-remove-article): If the article isn't in the agent,
2840         remove it from gnus-newsgroup-undownloaded so that the summary
2841         will display the article as undownloaded.
2842
2843 2003-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2844
2845         * gnus.el (gnus-version-number): Bump.
2846
2847 2003-04-13 01:12:01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2848
2849         * gnus.el: Oort Gnus v0.18 is released.
2850
2851 2003-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2852
2853         * gnus-draft.el (gnus-draft-send): Add message-hidden-headers.
2854
2855 2003-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2856
2857         * gnus-art.el (gnus-article-next-page): Use
2858         gnus-article-over-scroll.
2859         (gnus-article-over-scroll): New variable.
2860
2861         * message.el (message-newline-and-reformat): Place a boundary
2862         before filling.
2863         (message-make-forward-subject-function): Changed default to
2864         message-forward-subject-name-subject.
2865         (message-forward-subject-name-subject): New function.
2866
2867         * nnimap.el (nnimap-split-fancy): Ditto.
2868
2869         * gnus-sum.el (gnus-summary-line-message-size): Ditto.
2870
2871         * gnus-cus.el (gnus-group-parameters): Removed "which see".
2872
2873         * mml.el (mml-minibuffer-read-file): Bind
2874         completion-ignored-extensions to nil.
2875
2876         * message.el (message-fix-before-sending): Comment fix.
2877         (message-fix-before-sending): Make hidden headers visible.
2878         (message-hide-headers): Bind after-change-functions to nil.
2879         (message-forbidden-properties): Put invisible and intangible
2880         back.
2881         (message-strip-forbidden-properties): Ignore message-hidden text.
2882
2883         * gnus-msg.el: Hide headers.
2884
2885         * message.el (message-hidden-headers): New variable.
2886         (message-hide-headers): New function.
2887         (message-hide-header-p): New function.
2888         (message-hide-header-p): Change logic.
2889         (message-forbidden-properties): Remove intangible nil invisible
2890         nil.
2891         (message-hide-headers): Narrow to headers.
2892
2893         * lpath.el (featurep): Bind Info-directory, Info-menu.
2894
2895 2003-04-12  Jesper Harder  <harder@ifa.au.dk>
2896
2897         * mm-bodies.el (mm-body-charset-encoding-alist): UTF-16 *must* be
2898         encoded.
2899         (mm-encode-body): Don't corrupt UTF-16.
2900         (mm-body-encoding): Pay attention to mm-body-charset-encoding-alist.
2901
2902 2003-04-10  Kevin Greiner <kgreiner@xpediantsolutions.com>
2903
2904         * gnus-agent.el (gnus-agent-get-undownloaded-list): Articles in
2905         the CACHE are now detected and handled the same as an article
2906         downloaded into the agent.
2907         (gnus-agent-group-path): Modified to match nnmail-group-pathname
2908         so that the agent front-end and back-end (nnagent) always use the
2909         same directory.
2910         (gnus-agent-group-pathname): New function. Wrapper for
2911         nnmail-group-pathname.
2912         (gnus-agent-expire-unagentized-dirs): New variable.  May be
2913         customized to disable gnus-agent-expire-unagentized-dirs.
2914         (gnus-agent-expire-unagentized-dirs): Expand gnus-agent-directory
2915         as the directories in gnus-agent-expire-current-dirs were
2916         expanded.
2917
2918 2003-04-10  Jesper Harder  <harder@ifa.au.dk>
2919
2920         * gnus-sum.el (gnus-summary-make-menu-bar): Disable "Encrypt
2921         body" entry in read only groups.
2922
2923 2003-04-09  Jesper Harder  <harder@ifa.au.dk>
2924
2925         * gnus-sum.el (gnus-summary-make-menu-bar): Disable "Import file"
2926         and "Create article" items in non-editable groups.
2927
2928 2003-04-09  Kevin Greiner <kgreiner@xpediantsolutions.com>
2929
2930         * gnus-agent.el (gnus-agent-write-active): Added option of
2931         replacing, rather than updating, the agent's active file.  Do NOT
2932         use the fully qualified group name as gnus-active-to-gnus-format
2933         blindly prefixes group names with server names.
2934         (gnus-agent-save-group-info): Merge BOTH min/max of current active
2935         range, was just merging min, with specified active range.
2936         (gnus-agent-expire): Save agent's active ranges after
2937         expiring all groups.
2938         (gnus-agent-expire-group-1): Update min of agent's active range to
2939         min article currently fetched.
2940         (gnus-agent-expire-unagentized-dirs): Avoid asking to delete the
2941         same ancestor multiple times.
2942
2943         * gnus-async.el (gnus-asynchronous): Moved defcustom of
2944         gnus-asynchronous away from defgroup of gnus-asynchronous.  This
2945         seems to fix an intermittant error in which loading gnus-async
2946         fails to define gnus-asynchronous (the variable).
2947
2948         * gnus-sum.el: Concur with Steve Young, 5th argument to 'load' is
2949         non-essential.  Removed on all platforms.
2950         (gnus-select-newsgroup): When the agent is active, expand the
2951         group's active range to include fetched articles that are no
2952         longer in the server's active range.
2953
2954         * gnus-util.el (gnus-with-output-to-file): Removed all of the
2955         print-* bindings as they should be handled by the function doing
2956         the printing.
2957
2958 2003-04-09  Jesper Harder  <harder@ifa.au.dk>
2959
2960         * mm-uu.el (mm-uu-copy-to-buffer): buffer-file-coding-system
2961         might be unbound in non-MULE XEmacsen.
2962
2963 2003-04-08  Jesper Harder  <harder@ifa.au.dk>
2964
2965         * mm-uu.el (mm-uu-diff-groups-regexp, mm-uu-type-alist)
2966         (mm-uu-diff-extract, mm-uu-diff-test): New functionality:
2967         recognize diffs.
2968
2969         * mm-bodies.el (mm-decode-body): Use the supplied charset
2970         unconditionally if `code-pages' hasn't been loaded.
2971
2972 2003-04-07  Jesper Harder  <harder@ifa.au.dk>
2973
2974         * gnus-art.el (article-verify-x-pgp-sig): Don't use
2975         `insert-buffer', the docstring says "This function is meant for
2976         the user to run interactively.  Don't call it from programs!"
2977
2978         * mm-extern.el (mm-extern-mail-server): do.
2979
2980         * mml1991.el (mml1991-mailcrypt-sign, mml1991-mailcrypt-sign)
2981         (mml1991-gpg-sign, mml1991-gpg-encrypt, mml1991-pgg-sign)
2982         (mml1991-pgg-encrypt): do.
2983
2984         * pgg.el (pgg-decrypt-region): do.
2985
2986         * mm-view.el (mm-view-pkcs7-decrypt): do.
2987
2988         * mml-smime.el (mml-smime-verify): do.
2989
2990         * mml.el (mml-insert-mime, mml-preview): do.
2991
2992         * mml2015.el (mml2015-gpg-decrypt-1, mml2015-gpg-sign)
2993         (mml2015-gpg-encrypt, mml2015-pgg-clear-decrypt)
2994         (mml2015-pgg-encrypt): do.
2995
2996 2003-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2997
2998         * mm-bodies.el (mm-decode-body): Silence XEmacs when compiling.
2999
3000 2003-04-06  Jesper Harder  <harder@ifa.au.dk>
3001
3002         * mm-uu.el (mm-uu-copy-to-buffer): Copy
3003         `buffer-file-coding-system' to the new buffer.
3004         (mm-uu-pgp-signed-extract-1): Don't copy
3005         `buffer-file-coding-system' here.
3006
3007         * mm-bodies.el (mm-decode-body): last-coding-system-used doesn't
3008         exist in XEmacs.
3009         (mm-decode-body): Add missing quote.
3010
3011         * mm-uu.el (mm-uu-pgp-signed-extract-1): Set
3012         buffer-file-coding-system.
3013
3014         * mm-bodies.el (mm-decode-body): Set buffer-file-coding-system to
3015         last-coding-system-used.
3016
3017         * mml2015.el (mml2015-pgg-clear-verify): Encode the text
3018         according to buffer-file-coding-system.
3019
3020         * pgg-gpg.el (pgg-gpg-process-region): Revert previous change.
3021
3022         * pgg-pgp.el (pgg-pgp-process-region, pgg-pgp-verify-region)
3023         (pgg-pgp-snarf-keys-region): do.
3024
3025         * pgg-pgp5.el (pgg-pgp5-verify-region)
3026         (pgg-pgp5-snarf-keys-region, pgg-pgp5-process-region): do.
3027
3028         * pgg.el (pgg-make-temp-file, pgg-temporary-file-directory): do.
3029
3030 2003-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
3031
3032         * spam.el (spam-split): (save-excursion) around (widen)
3033         (spam-ham-move-routine): Use spam-group-ham-mark-p, not
3034         spam-group-spam-mark-p (from Michael Shields <shields@msrl.com>)
3035
3036 2003-04-05  Steve Youngs  <youngs@xemacs.org>
3037
3038         * gnus-sum.el: XEmacs doesn't support the 5th arg to 'load', so
3039         don't use it when loading gnus-sum.el if we're in XEmacs.
3040
3041 2003-04-05  Kevin Greiner <kgreiner@xpediantsolutions.com>
3042
3043         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bound
3044         print-escape-nonascii to fix more characters in compiled format
3045         specs.
3046
3047 2003-04-05  Jesper Harder  <harder@ifa.au.dk>
3048
3049         * gnus-audio.el (gnus-audio-au-player, gnus-audio-wav-player):
3050         Fix customization type.
3051
3052 2003-04-04  Kevin Greiner <kgreiner@xpediantsolutions.com>
3053
3054         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bound
3055         print-quoted, print-readably, print-escape-multibyte, and
3056         print-level to match original behavior of gnus-prin1.  This should
3057         repair the format of .newsrc.eld when using compiled format specs.
3058
3059 2003-04-04  Jesper Harder  <harder@ifa.au.dk>
3060
3061         * gnus-group.el (tool-bar-map): defvar it.
3062
3063         * gnus-art.el (tool-bar-map): do.
3064
3065         * gnus-sum.el (tool-bar-map): do.
3066
3067 2003-04-03  Jesper Harder  <harder@ifa.au.dk>
3068
3069         * earcon.el (earcon-regexp-alist): catmeow is a wav file.
3070
3071 2003-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
3072
3073         * gnus-art.el (gnus-button-ctan-directory-regexp): Changed meaning
3074         and value.
3075         (gnus-button-alist): Use it.
3076
3077 2003-04-03  Jesper Harder  <harder@ifa.au.dk>
3078
3079         * pgg-gpg.el (pgg-gpg-process-region): do.
3080
3081         * pgg-pgp.el (pgg-pgp-process-region, pgg-pgp-verify-region)
3082         (pgg-pgp-snarf-keys-region): do.
3083
3084         * pgg-pgp5.el (pgg-pgp5-verify-region)
3085         (pgg-pgp5-snarf-keys-region, pgg-pgp5-process-region): Use it.
3086
3087         * pgg.el (pgg-make-temp-file): New function. `make-temp-name' is
3088         unsafe.
3089         (pgg-temporary-file-directory): Remove.
3090
3091 2003-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3092
3093         * lpath.el: Fbind Info-directory and Info-menu.
3094
3095 2003-04-02  Reiner Steib  <Reiner.Steib@gmx.de>
3096
3097         * gnus-util.el (gnus-message): Added doc-string.
3098
3099         * gnus-score.el (gnus-score-find-trace): Changed behavior of `q'.
3100         (gnus-score-edit-file-at-point): Goto first match when using `e'.
3101
3102 2003-04-01  Reiner Steib  <Reiner.Steib@gmx.de>
3103
3104         * gnus-art.el (gnus-button-ctan-directory-regexp): New variable.
3105         (gnus-button-alist): Use it.  Changed CTAN and "setq" entries.
3106
3107 2003-04-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3108
3109         * nntp.el (nntp-via-rlogin-command-switches): Doc fix.
3110         (nntp-open-via-rlogin-and-telnet): Disable the telnet linemode.
3111
3112 2003-03-31  Kevin Greiner <kgreiner@xpediantsolutions.com>
3113
3114         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bound
3115         print-escape-newlines to print escape sequences rather than
3116         literal newline characters.
3117
3118 2003-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
3119
3120         * gnus-art.el (gnus-button-valid-fqdn-regexp): Use
3121         `message-valid-fqdn-regexp' for initialization.
3122         (gnus-button-handle-info-url): Renamed and extended version of
3123         `gnus-button-handle-info'.
3124         (gnus-button-message-level): Renamed from `gnus-button-mail-level'
3125         (gnus-button-handle-symbol, gnus-button-handle-library)
3126         (gnus-button-handle-info-keystrokes): New functions.
3127         (gnus-button-browse-level): New variable.
3128         (gnus-button-alist): Use them.  Added levels.
3129         (gnus-header-button-alist): Added levels.
3130
3131 2003-03-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3132
3133         * gnus.el (gnus-version-number): Bump.
3134
3135 2003-03-31 20:08:19 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
3136
3137         * gnus.el: Oort Gnus v0.17 is released.
3138
3139 2003-03-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3140
3141         * gnus-start.el (gnus-unload): Removed.
3142
3143         * pop3.el (pop3-read-response): Use
3144         nnheader-accept-process-output.
3145         (pop3-retr): Ditto.
3146
3147         * mm-view.el (mm-text-html-renderer-alist): Add -nolist to Lynx.
3148         (mm-text-html-washer-alist): Ditto.
3149
3150 2003-03-31  Simon Josefsson  <jas@extundo.com>
3151
3152         * imap.el (imap-gssapi-program): Also try GNU SASL.
3153         (imap-gssapi-open): Accept GNU SASL greeting.
3154         (imap-read-timeout): New.
3155         (imap-wait-for-tag): Use it.
3156
3157 2003-03-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3158
3159         * nntp.el (nntp-accept-process-output): Use new function.
3160
3161         * nnheader.el (nnheader-read-timeout): New variable.
3162         (nnheader-accept-process-output): New function.
3163
3164         * nntp.el (nntp-read-timeout): Removed.
3165
3166         * gnus-sum.el (gnus-summary-prepare-threads): Add comment.
3167
3168 2003-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3169
3170         * gnus-cache.el (gnus-cache-braid-nov): Revoke last change.
3171
3172 2003-03-30  Simon Josefsson  <jas@extundo.com>
3173
3174         * message.el (message-idna-inside-rhs-p): Narrow to header before
3175         searching.
3176
3177         * gnus-art.el (article-decode-idna-rhs): More restrictive regexp.
3178
3179 2003-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3180
3181         * nnmail.el (nnmail-process-mmdf-mail-format): Indent.
3182
3183 2003-03-28  Vasily Korytov  <deskpot@myrealbox.com>
3184
3185         * message.el (message-make-in-reply-to): Use
3186         mail-extract-address-components to determine sender's
3187         name/address.
3188
3189 2003-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3190
3191         * nndoc.el (nndoc-type-alist): Move mime-parts further ahead.
3192
3193         * gnus-registry.el (gnus-registry-translate-to-alist): Make a
3194         valid lambda.
3195         (gnus-registry-translate-from-alist): Ditto.
3196
3197         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
3198         print-length to nil.
3199
3200         * gnus-sum.el (gnus-summary-highlight-line-0): Indent.
3201
3202         * gnus-fun.el (gnus-fun-ppm-change-string): New function.
3203         (gnus-grab-cam-face): Use it.
3204
3205 2003-03-28  Paul Jarc  <prj@po.cwru.edu>
3206
3207         * nnmaildir.el (nnmaildir-request-set-mark)
3208         (nnmaildir-close-group): Allow each mark directory in a group to
3209         have its own inode for mark files, to accommodate AFS.
3210
3211 2003-03-28  Teodor Zlatanov  <tzz@lifelogs.com>
3212
3213         * gnus-start.el (gnus-read-newsrc-el-hook): new hook called by
3214         gnus-read-newsrc-el-file
3215         (gnus-read-newsrc-el-file): call the gnus-read-newsrc-el-hook
3216
3217         * gnus-registry.el (gnus-registry-translate-to-alist)
3218         (gnus-registry-translate-from-alist, alist-to-hashtable)
3219         (hashtable-to-alist): new functions
3220         (gnus-register-spool-action): add a spool item to the registry
3221
3222         * gnus.el (gnus-variable-list): added gnus-registry-alist to the
3223         list of saved variables
3224         (gnus-registry-alist): new variable
3225
3226 2003-03-27  Simon Josefsson  <jas@extundo.com>
3227
3228         * gnus-art.el (article-decode-group-name): Be correct instead of
3229         smart.
3230
3231 2003-03-27  Katsumi Yamaoka <yamaoka@jpl.org>
3232
3233         * lpath.el: Bind url-current-object for Emacs; bind
3234         gnus-agent-expire-current-dirs for XEmacs; fbind open-ssl-stream
3235         for both Emacsen.
3236
3237 2003-03-27  Jesper Harder  <harder@ifa.au.dk>
3238
3239         * gnus-sum.el (gnus-article-loose-mime)
3240         (gnus-article-emulate-mime): Move to gnus-article-mime customize
3241         group.
3242
3243         * gnus-msg.el (gnus-mailing-list-groups): Fix customize type and
3244         doc string.
3245
3246 2003-03-26  Kevin Ryde <user42@zip.com.au>
3247
3248         * gnus-sum.el (gnus-summary-find-for-reselect): Renamed from
3249         gnus-summary-find-uncancelled, skip temporary articles inserted by
3250         "refer" functions.
3251
3252 2003-03-26  Vasily Korytov  <deskpot@myrealbox.com>
3253
3254         * smiley.el (smiley-buffer): New function.
3255
3256 2003-03-26  Kevin Greiner <kgreiner@xpediantsolutions.com>
3257
3258         * gnus-agent.el (gnus-agent-fetch-selected-article): Replaced
3259         gnus-summary-update-line (which updated the article's face) with
3260         gnus-summary-update-download-mark (which updates the article's
3261         face by calling gnus-summary-update-line AND updates the download
3262         mark to show that the article was fetched).
3263
3264 2003-03-23  Kevin Greiner <kgreiner@xpediantsolutions.com>
3265
3266         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Provides
3267         option of deleting agent directories for groups/servers that are
3268         not currently agentized.
3269         (gnus-agent-expire): Use gnus-agent-expire-unagentized-dirs.
3270
3271         * gnus-int.el (gnus-open-server): Report backend errors in
3272         condition handler.
3273
3274 2003-03-23  Simon Josefsson  <jas@extundo.com>
3275
3276         * message.el (message-idna-to-ascii-rhs-1): Don't continue outside
3277         header.
3278
3279         * rfc2047.el (rfc2047-header-encoding-alist): Make Followup-To
3280         same as Newsgroups.
3281
3282         * nntp.el (nntp-open-connection-function): Mention
3283         nntp-open-tls-stream.
3284         (nntp-open-tls-stream): New function.
3285
3286         * tls.el: New file.
3287
3288         * nnimap.el (nnimap-server-port, nnimap-stream): Say TLS/SSL
3289         instead of SSL.
3290         (nnimap-stream): Add other streams, link to imap variables.
3291         (nnimap-authenticator): Add other authenticator, link to imap
3292         variables.
3293
3294         * imap.el: Autoload open-tls-stream.
3295         (imap-streams): Add tls in front of ssl.
3296         (imap-stream-alist): Add tls.
3297         (imap-default-tls-port): New variable.
3298         (imap-tls-p, imap-tls-open): New functions.
3299
3300 2003-03-22  ShengHuo ZHU  <zsh@cs.rochester.edu>
3301
3302         * mm-url.el (mm-url-insert-file-contents): parse url only if
3303         results is a list.
3304
3305 2003-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3306
3307         * mail-source.el (mail-source-fetch-imap): Revert.
3308
3309 2003-03-22  Svend Tollak Munkejord  <stm@bacchus.pvv.org>
3310
3311         * deuglify.el (gnus-outlook-repair-attribution-outlook): Use a
3312         less strict regexp.
3313
3314 2003-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3315
3316         * mail-source.el (mail-source-fetch-imap): Use buffer name for
3317         more imap function.
3318
3319 2003-03-21  Simon Josefsson  <jas@extundo.com>
3320
3321         * gnus-art.el (article-decode-group-name): Replace Newsgroups and
3322         Followup-To data inline.
3323
3324 2003-03-21  Jesper Harder  <harder@ifa.au.dk>
3325
3326         * gnus-art.el (gnus-treat-display-xface): Don't enable if
3327         icontopbm isn't available.
3328
3329 2003-03-21  Kevin Greiner <kgreiner@xpediantsolutions.com>
3330
3331         * gnus-int.el (gnus-open-server): Catch errors in backend's
3332         open-server method.  Returns nil rather than crashing startup.
3333
3334         * gnus-sum.el (eval-when-compile): Modified to resolve
3335         compile-time warnings.
3336
3337         * gnus-uu.el (gnus-uu-mark-series): Added informative msg.
3338         Reports length of series so that the user can compare N with a
3339         subject that should, if the entire series is present, contain
3340         '(.../N)'.
3341         (gnus-uu-delete-work-dir): Avoid hanging when O/S forbids deletion
3342         of temp file (Win-XP may leave the temp file locked when the
3343         uudecode process fails).
3344
3345 2003-03-20  ShengHuo ZHU  <zsh@cs.rochester.edu>
3346
3347         * message.el (message-split-line): Ignore error.
3348
3349         * lpath.el (split-line): Avoid split-line warning message.
3350
3351 2003-03-20  Kim F. Storm  <storm@cua.dk>
3352
3353         * message.el (message-split-line): New function.
3354         (message-mode-map): Remap split-line to message-split-line.
3355
3356 2003-03-20  Katsumi Yamaoka <yamaoka@jpl.org>
3357
3358         * message.el (message-make-overlay): Defalias it to make-overlay.
3359         (message-delete-overlay): Defalias it to delete-overlay.
3360         (message-overlay-put): Defalias it to overlay-put.
3361         (message-idna-to-ascii-rhs-1): Use them.
3362
3363         * messagexmas.el (message-xmas-redefine): Defalias some overlay
3364         functions to extent functions.
3365
3366 2003-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3367
3368         * message.el (message-check-news-header-syntax): Fixed regexp.
3369
3370 2003-03-20  ShengHuo ZHU  <zsh@cs.rochester.edu>
3371
3372         * rfc2231.el (rfc2231-decode-encoded-string): Downcase charset.
3373
3374         * mm-url.el (mm-url-insert): Move url-current-object stuff into
3375         mm-url-insert-file-contents.
3376
3377         * nnrss.el (nnrss-fetch): Fetch the local stuff.
3378         (nnrss-check-group): Use it.
3379
3380 2003-03-20 Mark A. Hershberger  <mah@everybody.org>
3381
3382         * nnrss.el: Primitive XML Name-space support.  This means that RSS
3383         feeds like Kevin Burton's[1] can now be read in Gnus.
3384
3385         Implemented support for Mark Pilgrim's RSS Autodiscovery.[2] This
3386         means that if you want to read the RSS feed for example.com, all
3387         you have to do is hit "G R http://www.example.com/ RET" and
3388         nnrss.el will find and the feed listed on the site or (if you have
3389         loaded xml-rpc.el) look it up on syndic8.com.
3390
3391         Marked the message as HTML (by adding a Content-Type header) so
3392         that Gnus will render it as html if the user wants that.
3393
3394         Implemented the ability to save nnrss-group-alist so that any new
3395         feeds the you subscribe to will be found the next time you start
3396         up.
3397
3398         Implemented support for RSS 2.0 elements (author, pubDate).
3399
3400         Prefer for <content:encoded> over <description> where both
3401         elements exist.
3402
3403         * mm-url.el (mm-url-insert): Set url-current-object.
3404
3405         * gnus-group.el (gnus-group-make-rss-group): New function.
3406
3407 2003-03-20  Katsumi Yamaoka <yamaoka@jpl.org>
3408
3409         * message.el (message-idna-to-ascii-rhs-1): Don't use replace-*
3410         for highlight overlays.
3411
3412 2003-03-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3413
3414         * gnus-cache.el (gnus-cache-braid-nov): Test if a line looks like
3415         a NOV.
3416
3417 2003-03-20  Simon Josefsson  <jas@extundo.com>
3418
3419         * message.el (message-use-idna): Disable if UTF-8 unavailable.
3420         (message-idna-to-ascii-rhs): Use it.
3421
3422         * gnus-art.el (gnus-use-idna): Disable if UTF-8 unavailable.
3423
3424 2003-03-19  Teodor Zlatanov  <tzz@lifelogs.com>
3425
3426         * spam.el (spam-group-ham-mark-p, spam-group-spam-mark-p)
3427         (spam-group-ham-marks, spam-group-spam-marks): new functions
3428         (spam-spam-marks, spam-ham-marks): removed in favor of the
3429         spam-marks and ham-marks parameters
3430         (spam-generic-register-routine, spam-ham-move-routine): use the
3431         new spam-group-{spam,ham}-mark-p functions
3432
3433         * gnus.el (spam-marks, ham-marks): new group parameters with
3434         default values same as the old spam-spam-marks and spam-ham-marks
3435
3436 2003-03-19  Simon Josefsson  <jas@extundo.com>
3437
3438         * gnus-art.el (gnus-article-decode-hook): Add IDNA.
3439         (gnus-use-idna): New variable.
3440         (article-decode-idna-rhs): New function.
3441
3442         * message.el (message-use-idna): New variable.
3443         (message-mode-field-menu): Add entry for IDNA.
3444         (message-idna-inside-rhs-p, message-idna-to-ascii-rhs-1)
3445         (message-idna-to-ascii-rhs): New function.
3446         (message-generate-headers): Invoke IDNA code.
3447
3448 2003-03-19  Paul Jarc  <prj@po.cwru.edu>
3449
3450         * nnmaildir.el (nnmaildir--system-name): New function.
3451         (nnmaildir-request-accept-article): Use it.
3452
3453 2003-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3454
3455         * gnus-util.el (gnus-byte-compile): Make it work silently as the
3456         gnus-compile function does.
3457
3458         * gnus-sum.el (gnus-summary-highlight-line-0): Revoke the last
3459         bogus change.
3460
3461 2003-03-19  Jesper Harder  <harder@ifa.au.dk>
3462
3463         * mm-util.el (mm-mule-charset-to-mime-charset): Test if
3464         sort-coding-systems is defined.
3465
3466 2003-03-18  Paul Jarc  <prj@po.cwru.edu>
3467
3468         * nnmaildir.el (nnmaildir-open-server, nnmaildir-request-scan)
3469         (nnmaildir-request-create-group, nnmaildir-request-delete-group):
3470         Replace create-directory with target-prefix.
3471
3472 2003-03-18  Jesper Harder  <harder@ifa.au.dk>
3473
3474         * mm-bodies.el (mm-decode-coding-region-safely): Don't use
3475         find-charset-string which is slooow in XEmacs.
3476
3477 2003-03-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3478
3479         * gnus-sum.el (gnus-summary-highlight-line-0): Silence the byte-
3480         compiler under XEmacs.
3481
3482 2003-03-18  Jesper Harder  <harder@ifa.au.dk>
3483
3484         * gnus-art.el (gnus-treat-highlight-signature): Make the default
3485         work for multipart/signed where the message text isn't `last'.
3486
3487 2003-03-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3488
3489         * mm-view.el (mm-setup-w3m): Set w3m-display-inline-images to
3490         the value of mm-inline-text-html-with-images.
3491         (mm-inline-text-html-render-with-w3m): Don't bind
3492         w3m-display-inline-images.
3493
3494         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't bind
3495         w3m-display-inline-images.
3496
3497         * lpath.el: Bind w3m-display-inline-images; bind mm-w3m-mode-map
3498         regardless of an Emacs flavor.
3499
3500 2003-03-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3501
3502         * gnus.el (gnus-version-number): Bump.
3503
3504 2003-03-18 00:38:22 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
3505
3506         * gnus.el: Oort Gnus v0.16 is released.
3507
3508 2003-03-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3509
3510         * lpath.el (featurep): Bind mm-w3m-mode-map.
3511
3512 2003-03-17  Paul Jarc  <prj@po.cwru.edu>
3513
3514         * nnmail.el (nnmail-cache-primary-mail-backend): Not all
3515         'respool-able backends define a global nnchoke-get-new-mail
3516         variable.
3517
3518 2003-03-17  Reiner Steib  <Reiner.Steib@gmx.de>
3519
3520         * gnus-art.el (gnus-mime-delete-part): New function.
3521         (gnus-mime-action-alist, gnus-mime-button-commands): Use it.
3522
3523 2003-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3524
3525         * message.el (message-check-news-header-syntax): Don't push
3526         groups twice onto list of unknown groups.
3527
3528         * nndoc.el (nndoc-type-alist): Move exim-bounce a bit further
3529         back.
3530
3531         * nnheader.el (nnheader-find-etc-directory): Doc fix.
3532
3533         * gnus-msg.el (gnus-inews-add-send-actions): Don't restore window
3534         config unless the summary buffer exists.
3535
3536         * gnus-sum.el (gnus-summary-next-group): Semi-exit group first to
3537         that target group is computed correctly when articles are marked
3538         as read by Xref handling.
3539
3540         * mail-source.el (mail-source-fetch-imap): Pass buffer-name to
3541         imap-open.
3542
3543         * message.el (message-send-mail): Add courtesy string to Bcc's,
3544         too.
3545
3546         * gnus-cite.el (gnus-cited-line-p): New function.
3547
3548 2003-03-15  Jesper Harder  <harder@ifa.au.dk>
3549
3550         * mm-bodies.el (mm-decode-body): Add new optional parameter,
3551         force, to use the supplied charset unconditionally.
3552
3553         * gnus-art.el (article-decode-charset): Use it.
3554
3555 2003-03-14  Jesper Harder  <harder@ifa.au.dk>
3556
3557         * mm-bodies.el (mm-decode-coding-region-safely): New function.
3558         (mm-decode-body): Use it.
3559
3560         * rfc2047.el (rfc2047-decode-region): do.
3561         (rfc2047-decode-string): Guess coding system if the default is
3562         invalid.
3563
3564 2003-03-12  Paul Jarc  <prj@po.cwru.edu>
3565
3566         * nnmaildir.el (nnmaildir-request-update-info): Pretend missing
3567         articles are marked 'read, so we get correct article counts.
3568
3569 2003-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
3570
3571         * gnus-art.el (gnus-insert-mime-button): Exclude a newline from
3572         the button.
3573         (gnus-insert-prev-page-button): Ditto.
3574         (gnus-insert-next-page-button): Ditto.
3575         (gnus-insert-mime-security-button): Ditto.
3576
3577         * mm-view.el (mm-inline-image-emacs): Open the bottom of an image
3578         one line.  Suggested by Greg Klanderman <gak@klanderman.net>.
3579         (mm-inline-image-xemacs): Ditto.
3580
3581 2003-03-12  Paul Jarc  <prj@po.cwru.edu>
3582
3583         * nnmaildir.el (nnmaildir--parse-filename, nnmaildir--sort-files,
3584         nnmaildir--scan, nnmaildir-request-accept-article): Changes for
3585         the recent filename uniqueness discussion.
3586
3587 2003-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3588
3589         * mm-view.el (mm-inline-image-emacs): Make it delete an excessive
3590         newline next time.
3591         (mm-inline-image-xemacs): Ditto.
3592
3593 2003-03-10  Jesper Harder  <harder@ifa.au.dk>
3594
3595         * gnus-agent.el (gnus-agent-synchronize-flags-server): Don't use
3596         kill-line.
3597
3598 2003-03-09  Jesper Harder  <harder@ifa.au.dk>
3599
3600         * gnus-msg.el (gnus-inews-insert-archive-gcc): Don't use
3601         kill-line.
3602
3603 2003-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
3604
3605         * gnus-agent.el (gnus-agent-fetched-hook): New variable.  Just
3606         fixing the code to match the documentation.
3607         (gnus-agent-fetch-selected-article): Replaced
3608         gnus-summary-update-article-line with gnus-summary-update-line as
3609         the former did not correctly recalculate the thread indentation.
3610         (gnus-agent-find-parameter): The agent-predicate, if not found
3611         anywhere else, defaults to the value of gnus-agent-predicate.
3612         (gnus-agent-fetch-session): Fixed typo; now executes
3613         gnus-agent-fetched-hook rather than the undocumented
3614         gnus-agent-fetch-hook.
3615         (gnus-agent-fetch-group-1): Removed part of 2003-03-06 fix.  The
3616         default agent predicate is now provided by
3617         gnus-agent-find-parameter.
3618         (gnus-agent-message): New macro.  This macro avoids potentially
3619         costly parameter evaluation when the message's level is too high
3620         to display.
3621         (gnus-agent-expire-group-1): Disabled undo tracking in temp
3622         overview buffer. Uses new gnus-agent-message macro to reduce
3623         overhead of optional messages. Reversed message levels to
3624         emphasize percent completion messages.  Detailed messages of
3625         little use except when debugging code.
3626
3627 2003-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
3628
3629         * spam.el (spam-ham-move-routine): use
3630         spam-mark-ham-unread-before-move-from-spam-group
3631         (spam-mark-ham-unread-before-move-from-spam-group): new variable
3632
3633 2003-03-07  Teodor Zlatanov  <tzz@lifelogs.com>
3634
3635         * spam.el: load nnimap.el when compiling
3636         (spam-setup-widening): use
3637         nnimap-split-download-body-default instead of
3638         nnimap-split-download-body which is a user-customizable variable
3639
3640 2003-03-07  Simon Josefsson  <jas@extundo.com>
3641
3642         * nnimap.el (nnimap-split-download-body-default): New, holds
3643         default for n-s-d-b.
3644         (nnimap-split-download-body): Add new setting (symbol default),
3645         which uses contents of n-s-d-b-d, and made it the default.
3646
3647 2003-03-07  Teodor Zlatanov  <tzz@lifelogs.com>
3648
3649         * spam.el (spam-use-hashcash): new variable
3650         (spam-list-of-checks): added spam-use-hashcash with associated
3651         spam-check-hashcash
3652         (spam-check-hashcash): new function, installed iff hashcash.el is
3653         loaded
3654         (spam-setup-widening): don't use (return)
3655
3656 2003-03-06  Kevin Greiner  <kgreiner@xpediantsolutions.com>
3657
3658         * gnus-agent.el (gnus-agent-fetch-group-1): Added default
3659         predicate of `false' to avoid an error when a group defines no
3660         predicate. Fixed typo that disabled agent scoring (i.e. the
3661         low/high predicates should now work).
3662
3663 2003-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3664
3665         * spam.el: add spam-maybe-spam-stat-load to
3666         gnus-get-top-new-news-hook, remove it from gnus-get-new-news-hook
3667         (spam-bogofilter-register-with-bogofilter): use
3668         spam-bogofilter-spam-switch and spam-bogofilter-ham-switch
3669         (spam-bogofilter-spam-switch, spam-bogofilter-ham-switch): new
3670         custom variables to replace "-s" and "-n"
3671
3672         * gnus-group.el (gnus-group-get-new-news): call the new
3673         gnus-get-top-new-news-hook hook
3674
3675         * gnus-start.el (gnus-get-top-new-news-hook): new hook, run ONLY
3676         by gnus-get-new-news, NOT by gnus-group-get-new-news-this-group
3677
3678 2003-03-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3679
3680         * mm-uu.el (mm-uu-pgp-encrypted-test): Fix message.
3681
3682 2003-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3683
3684         * gnus-cus.el (gnus-group-customize): Don't use delete-if which is
3685         a cl run-time function.
3686
3687 2003-03-06  Kevin Greiner  <kgreiner@xpediantsolutions.com>
3688
3689         * gnus-agent.el (gnus-agent-fetch-group-1): Added missing binding
3690         on gnus-agent-short-article.
3691         (gnus-category-read): Replaced CL function mapcar* with new macro:
3692         gnus-mapcar.
3693         * gnus-util.el (gnus-mapcar): New macro.  Generalizes mapcar to
3694         support functions that accept multiple parameters.  A separate
3695         sequence must be provided for each parameter in the function.
3696         Iteration stops when the end of the shortest list is reached.
3697
3698 2003-03-06  Jesper Harder  <harder@ifa.au.dk>
3699
3700         * nnimap.el (nnimap-request-accept-article): Use delete-region.
3701
3702         * html2text.el (html2text-clean-dtdd, html2text-delete-tags)
3703         (html2text-delete-single-tag, html2text-clean-anchor)
3704         (html2text-remove-tags): Use delete-region.
3705         (html2text-fix-paragraphs): Simplify.
3706
3707         * mml1991.el (mml1991-mailcrypt-sign, mml1991-mailcrypt-encrypt)
3708         (mml1991-gpg-sign, mml1991-gpg-encrypt, mml1991-pgg-sign)
3709         (mml1991-pgg-encrypt, mml1991-pgg-encrypt): Use delete-region, not
3710         kill-region.
3711
3712 2003-03-04  John Paul Wallington  <jpw@gnu.org>
3713
3714         * gnus-agent.el (gnus-agent-enable-expiration)
3715         (gnus-agent-article-alist, gnus-agent-article-alist)
3716         (gnus-agent-cat-defaccessor): Doc fixes.
3717
3718 2003-03-04  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
3719
3720         * gnus-agent.el (gnus-function-implies-unread-1): Grok
3721         byte-compiled functions.
3722
3723 2003-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
3724
3725         * gnus-sum.el (gnus-auto-goto-ignores): New variable. Provides
3726         customization between new maneuvering (which permits selecting
3727         undownloaded articles) and old maneuvering (which skipped over
3728         undownloaded articles) behaviors.
3729         (gnus-summary-find-next): Pass through the unread and subject
3730         parameters when calling gnus-summary-find-prev.
3731         (gnus-summary-find-next,gnus-summary-find-prev): Apply
3732         gnus-auto-goto-ignores to filter out unacceptable articles.
3733
3734 2003-03-04  Jesper Harder  <harder@ifa.au.dk>
3735
3736         * mail-source.el (mail-source-read-passwd): Remove. `read-passwd'
3737         exists in all supported Emacs versions, so we don't need this
3738         compatibility function.
3739         (mail-source-fetch-pop, mail-source-check-pop)
3740         (mail-source-fetch-webmail): Use read-passwd.
3741
3742         * nntp.el (nntp-send-authinfo, nntp-send-nosy-authinfo)
3743         (nntp-open-telnet, nntp-open-via-telnet-and-telnet): Use
3744         read-passwd.
3745
3746         * nnwarchive.el (nnwarchive-open-server): Use read-passwd.
3747
3748         * imap.el (imap-read-passwd): Remove.
3749         (imap-interactive-login): Use read-passwd.
3750
3751         * canlock.el (canlock-read-passwd): Remove.
3752         (canlock-insert-header, canlock-verify): Use read-passwd.
3753
3754         * sieve-manage.el (sieve-manage-read-passwd): Remove.
3755         (sieve-manage-interactive-login): Use read-passwd.
3756
3757         * pop3.el (pop3-read-passwd): Remove.
3758         (pop3-movemail, pop3-get-message-count, pop3-apop): Use
3759         read-passwd.
3760
3761         * pgg.el (pgg-read-passphrase): Simplify.
3762
3763 2003-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
3764
3765         * gnus-agent.el (gnus-agent-mode): Fixed the mode line reports
3766         'plugged' when actually 'unplugged' bug.
3767         (gnus-category-read): Ignore nil values when converting an
3768         old-format category so that the new-format category will default
3769         those attributes to the global variables.
3770
3771 2003-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
3772
3773         * mail-source.el (mail-source-delete-old-incoming-confirm): Fixed
3774         doc-string.
3775
3776 2003-03-03  Jesper Harder  <harder@ifa.au.dk>
3777
3778         * nnrss.el (nnrss-decode-entities-unibyte-string): Use `buffer-string'.
3779         * nndoc.el (nndoc-dissect-mime-parts-sub): do.
3780         * nndb.el (nndb-request-accept-article, nndb-status-message): do.
3781         * mm-url.el (mm-url-decode-entities-string): do.
3782         * mml1991.el (mml1991-mailcrypt-sign, mml1991-gpg-sign): do.
3783         * mm-decode.el (mm-find-raw-part-by-type): do.
3784         * message.el (message-send-mail-partially)
3785         (message-send-mail-with-sendmail): do.
3786         * gnus-uu.el (gnus-uu-save-article, gnus-uu-reginize-string): do.
3787         * gnus-kill.el (gnus-pp-gnus-kill): do.
3788         * gnus-art.el (gnus-article-treat-unfold-headers)
3789         (gnus-article-encrypt-body): do.
3790
3791 2003-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
3792
3793         * mail-source.el (mail-source-delete-incoming): Allow integer value.
3794         (mail-source-delete-old-incoming-confirm): New variable.
3795         (mail-source-delete-old-incoming): Use it.  New function.
3796         (mail-source-callback): Call `mail-source-delete-old-incoming' if
3797         `mail-source-delete-incoming' is a nonnegative integer.
3798
3799 2003-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
3800
3801         * gnus-msg.el (gnus-extended-version): Fix for 'emacs-gnus-config.
3802         (gnus-user-agent): Fixed typo.
3803
3804 2003-03-03  Kevin Greiner  <kgreiner@xpediantsolutions.com>
3805
3806         * gnus-agent.el (gnus-agent-enable-expiration): Fixed documentation.
3807         (gnus-agent-expire-group-1): Removed invalid (interactive) specifier.
3808
3809 2003-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3810
3811         * gnus-agent.el (gnus-agent-fetch-articles): Fix nil message.
3812         (gnus-agent-fetch-session): Allow debugging to take place.
3813
3814 2003-03-03  Jesper Harder  <harder@ifa.au.dk>
3815
3816         * gnus-sum.el (gnus-highlight-selected-summary)
3817         (gnus-article-get-xrefs, gnus-summary-show-thread): Use
3818         `gnus-point-at-bol' and `gnus-point-at-eol' instead of
3819         `(progn (beginning-of-line) (point))'.  It's shorter, faster,
3820         and makes it clear that we don't need the side effect.
3821         * gnus-util.el (gnus-delete-line): do.
3822         * gnus-xmas.el (gnus-group-add-icon): do.
3823         * nnmail.el (nnmail-article-group, nnmail-cache-fetch-group): do.
3824         * nntp.el (nntp-send-authinfo-from-file): do.
3825         * nnml.el (nnml-header-value): do.
3826         * nnheader.el (nnheader-insert-references): do.
3827         * gnus-cite.el (gnus-article-highlight-citation)
3828         (gnus-cite-parse): do.
3829         * gnus-score.el (gnus-score-followup): do.
3830         * gnus-draft.el (gnus-draft-send): do.
3831         * gnus-group.el (gnus-group-highlight-line): do.
3832         * gnus-cache.el (gnus-cache-braid-nov): do.
3833         * nnfolder.el (nnfolder-retrieve-headers)
3834         (nnfolder-request-article): do.
3835         * gnus-art.el (article-hide-boring-headers)
3836         (gnus-article-hide-header): do.
3837
3838         * nnheader.el (nnheader-find-nov-line): Use gnus-delete-line.
3839         * nnml.el (nnml-request-replace-article): do.
3840         * nnmbox.el (nnmbox-request-move-article, nnmbox-delete-mail): do.
3841         * nnfolder.el (nnfolder-request-move-article): do.
3842         * gnus-cache.el (gnus-cache-possibly-remove-article): do.
3843         * gnus-art.el (gnus-mm-display-part): do.
3844
3845         * gnus-art.el (gnus-article-goto-part): Use gnus-goto-char.
3846
3847 2003-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
3848
3849         * nntp.el (nntp-possibly-change-group): Avoid calling
3850         process-buffer on nil (Which happened when you lost your
3851         connection while fetching); instead signal a "Server Closed
3852         Connection" error.
3853
3854 2003-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
3855
3856         * gnus-agent.el (gnus-agent-enable-expiration): New
3857         variable. Either ENABLE or DISABLE.  Sets default behavior for
3858         selecting which groups are expired.
3859         (gnus-agent-cat-set-property, gnus-agent-cat-defaccessor,
3860         gnus-agent-set-cat-groups): Provides abstract interface for
3861         accessing agent category.  Category now implemented by an alist.
3862         (gnus-agent-add-group, gnus-agent-remove-group,
3863         gnus-category-insert-line, gnus-category-edit-predicate,
3864         gnus-category-edit-score, gnus-category-edit-groups,
3865         gnus-category-copy, gnus-category-add, gnus-group-category): Use
3866         new agent category abstraction.
3867         (gnus-agent-find-parameter): New function. Search for agent
3868         configuration parameter first in the group's parameters, then its
3869         topics (if any), and then the group's category.  If not found
3870         anywhere, use the original defined constants.
3871         (gnus-agent-fetch-headers, gnus-agent-fetch-group-1): Use new
3872         gnus-agent-find-parameter.
3873         (gnus-agent-fetch-headers, gnus-agent-uncached-articles): Clearing
3874         gnus-agent-cache now blocks retrieving headers and articles from
3875         the local cache.  Fetched content is still added to the cache
3876         before being returned.
3877         (gnus-agent-fetch-session): Use error-message-string to generate
3878         displayed error message.
3879         (gnus-agent-customize-category): New Command. 'e' in category
3880         buffer opens category customization buffer.
3881         (gnus-category-read): Reads either positional or alist format;
3882         returns alist format.
3883         (gnus-category-write): Writes category file compatible with
3884         current, and previous, versions of gnus-agent.
3885         (gnus-category-make-function, gnus-category-make-function-1):
3886         Corrected documentation; parameter is predicate NOT category.
3887         (gnus-predicate-implies-unread): Now works in more cases per the
3888         todo comment.
3889         (gnus-function-implies-unread-1): New function. Supports
3890         gnus-predicate-implies-unread.
3891         (gnus-agent-expire-group): Command now provides default of group
3892         under point.
3893         (gnus-agent-expire-group-1): Obeys new agent-enable-expiration and
3894         agent-days-until-old parameters. No longer supports
3895         gnus-agent-expire-days being set to an alist.
3896         (gnus-agent-request-article): Now performs its own checks of
3897         gnus-agent, gnus-agent-cache, and gnus-plugged rather than
3898         assuming that the caller will do them correctly.
3899         (): Added one-time hook to gnus-group-prepare-hook.  Detects when
3900         gnus-agent-expire-days is set to an alist.  Converts said alist
3901         into group parameter so that gnus-agent-expire-days will not be
3902         needed.
3903         * gnus-art.el (gnus-request-article-this-buffer): Conditional
3904         checks surrounding gnus-agent-request-article removed; now
3905         performed by gnus-agent-request-article.
3906         * gnus-cus.el (gnus-agent-parameters): New variable. List of
3907         customizable group/topic parameters that regulate the agent.
3908         (gnus-group-customize): Uses gnus-agent-parameters.  Replaced
3909         kill-buffer with gnus-kill-buffer to remove the killed buffer from
3910         the list of gnus buffers.
3911         (gnus-trim-whitespace): Removes leading and trailing whitespace
3912         from multiline strings.
3913         (gnus-agent-cat-prepare-category-field,
3914         gnus-agent-customize-category): Constructs a category
3915         customization buffer.
3916         * gnus-int.el (gnus-retrieve-headers,
3917         gnus-request-expire-articles): No longer checks gnus-agent-cache
3918         as it is handled internally by the agent.
3919         (gnus-request-head, gnus-request-body): Conditional checks
3920         surrounding gnus-agent-request-article removed; now performed by
3921         gnus-agent-request-article.
3922
3923         * gnus-start.el (): Added defvar statements to resolve compilation
3924         warnings.
3925         (gnus-long-file-names): New function. Isolates platform dependent
3926         msdos-long-file-names.
3927         (gnus-save-startup-file-via-temp-buffer): New variable. Provides
3928         option of writing directly to file.  Avoids memory exhausted
3929         errors when .newsrc.eld is huge.
3930         (gnus-save-newsrc-file): Uses new
3931         gnus-save-startup-file-via-temp-buffer.
3932         (gnus-gnus-to-quick-newsrc-format): Rewritten to write to
3933         standard-output.
3934         (gnus-display-time-event-handler): Changed to alias from a defun
3935         to avoid a compile-time warning when display-time-event-handler is
3936         not defined.
3937         * gnus-util.el (gnus-with-output-to-file): New macro. Binds
3938         standard-output such that prin1 and princ will write directly to a
3939         file.
3940
3941         * gnus.el (gnus-agent-cache): Expanded documentation.
3942         (gnus-summary-high-undownloaded-face): Removed second bold keyword
3943         so that this face is actually bold.
3944
3945         * nnkiboze.el (nnkiboze-request-article): Only use the cache when
3946         gnus-use-cache has been set.
3947
3948 2003-03-02  Jesper Harder  <harder@ifa.au.dk>
3949
3950         * nnvirtual.el (nnvirtual-update-xref-header): Simplify.
3951
3952 2003-03-01  Jesper Harder  <harder@ifa.au.dk>
3953
3954         * gnus-art.el (gnus-article-refer-article): Be more permissive.
3955
3956 2003-03-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
3957
3958         * spam.el: Fix typo.
3959
3960 2003-03-01  Satyaki Das  <satyaki@theforce.stanford.edu>
3961         (Trivial patch.)
3962
3963         * pgg-gpg.el (pgg-gpg-process-region): Insert process status into
3964         errors-buffer. This produces a nicer error message in case of
3965         problems.
3966
3967 2003-03-01  Teodor Zlatanov  <tzz@lifelogs.com>
3968
3969         * spam.el (spam-maybe-spam-stat-load, spam-maybe-spam-stat-load):
3970         load stats iff spam-use-stat is on
3971
3972         * spam.el: add spam-maybe-spam-stat-load to gnus-startup hook,
3973         also use spam-maybe-spam-stat-load and spam-maybe-spam-stat-save
3974         instead of spam-stat-load and spam-stat-save in the
3975         gnus-get-new-news-hook and gnus-save-newsrc-hook, respectively
3976
3977 2003-03-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
3978
3979         * mm-view.el (mm-inline-text): Ignore errors from enriched-decode.
3980
3981 2003-03-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3982
3983         * message.el (message-make-fqdn): Protect against nil user-mail.
3984
3985 2003-02-28  Vasily Korytov <deskpot@myrealbox.com>
3986
3987         * gnus-art.el (gnus-boring-article-headers): New values:
3988         'to-list and 'cc-list.
3989
3990 2003-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3991
3992         * spam.el (spam-setup-widening): new function to set
3993         nnimap-split-download-body, we add it to gnus-get-new-news-hook
3994         (spam-list-of-statistical-checks): list of statistical splitter
3995         checks
3996         (spam-split): added a widen call when a statistical check is
3997         enabled
3998
3999 2003-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
4000
4001         * gnus-msg.el (gnus-user-agent): Changed default to
4002         'emacs-gnus-type, renamed 'full.
4003
4004 2003-02-28  ShengHuo ZHU  <zsh@cs.rochester.edu>
4005
4006         * nnfolder.el (nnfolder-request-accept-article): Don't use
4007         mail-header-unfold-field.
4008
4009 2003-02-27  ShengHuo ZHU  <zsh@cs.rochester.edu>
4010
4011         * imap.el (imap-ssl-open): Don't depend on ssl.el.
4012         * nntp.el (nntp-open-ssl-stream): Don't depend on ssl.el.
4013
4014 2003-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
4015
4016         * spam.el: add spam-stat-load to gnus-get-new-news-hook
4017         (spam-split): remove spam-stat-load call
4018
4019 2003-02-26  Simon Josefsson  <jas@extundo.com>
4020
4021         * gnus-sum.el (gnus-summary-toggle-header): Run
4022         gnus-article-decode-hook instead of calling a-decode-encoded-words
4023         directly (the latter is run as part of the former).
4024
4025 2003-02-26  ShengHuo ZHU  <zsh@cs.rochester.edu>
4026
4027         * gnus-agent.el (gnus-agent-expire-group): Remove debug.
4028
4029 2003-02-25  Jesper Harder  <harder@ifa.au.dk>
4030
4031         * message.el (message-sendmail-envelope-from): New option.
4032         (message-sendmail-envelope-from): New function.
4033         (message-send-mail-with-sendmail): Use it.
4034
4035 2003-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
4036
4037         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Added
4038         compensation for TDMA addresses.
4039
4040 2003-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
4041
4042         * gnus-msg.el (gnus-user-agent): New variable.
4043         (gnus-version-expose-system): Removed.  Obsoleted by
4044         `gnus-user-agent'.
4045         (gnus-extended-version): Use `gnus-user-agent'.
4046
4047 2003-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
4048
4049         * spam.el (spam-stat-register-spam-routine,
4050         spam-stat-register-ham-routine): remove spam-stat-save
4051         (spam-stat hook): add spam-stat-save to the gnus-save-newsrc-hook
4052
4053 2003-02-24  Kevin Greiner  <kgreiner@xpediantsolutions.com>
4054
4055         * gnus-group.el (gnus-topic-mode-p): Fixed free variable
4056         reference.
4057
4058 2003-02-24  Kevin Greiner  <kgreiner@xpediantsolutions.com>
4059
4060         * nnheader.el (nnheader-find-nov-line): Changed midpoint
4061         calculation to avoid integer overflow.
4062
4063 2003-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
4064
4065         * gnus-start.el (gnus-backup-startup-file): Fixed custom type.
4066
4067 2003-02-24  Ted Zlatanov <tzz@lifelogs.com>
4068         * spam.el: disabled spam-get-article-as-filename
4069
4070         From Michael Shields  <shields@msrl.com>
4071
4072         * gnus-group.el (gnus-group-is-exiting-without-update-p): New.
4073         * gnus-sum.el (gnus-summary-exit-no-update): Use it.
4074         * gnus-sum.el (gnus-summary-expire-articles): Use it.
4075         * spam.el (spam-summary-prepare-exit): Use it.
4076         * gnus.el (gnus-install-group-spam-parameters): New.
4077         * spam.el (spam-group-ham-processor-copy-p): New.
4078         * spam.el (spam-summary-prepare-exit): Support for ham copying.
4079         * spam.el (spam-mark-spam-as-expired-and-move-routine): Fix bug
4080         that would cause the current message to be moved if the group had
4081         no spam.
4082         * spam.el (spam-ham-move-routine): New `copy' argument.
4083
4084 2003-02-24  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4085         From Martin Thornquist <martint@ifi.uio.no>
4086
4087         * gnus-topic.el (gnus-topic-select-group): Select last group if
4088         after last group.
4089         * gnus-group.el (gnus-group-select-group): Ditto.
4090
4091 2003-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4092
4093         * gnus-art.el (popup-menu): Compiler macro for Emacs 20.
4094         (gnus-article-refer-article): Use gnus-point-at-(b|e)ol instead of
4095         point-at-(b|e)ol which aren't available in Emacs 20.
4096
4097         * gnus-registry.el (puthash): Alias to cl-puthash for Emacs 20.
4098
4099 2003-02-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
4100
4101         * gnus-start.el (gnus-activate-group): Re-enabled the catch error
4102         clause of the condition-case statement.  Errors connecting to a
4103         server no longer terminate gnus.
4104
4105         * gnus-agent.el (gnus-agent-toggle-plugged): Renamed parameter to
4106         make its use obvious.  Added no-nothing case to avoid
4107         opening(closing) servers when already open(closed).
4108         (gnus-agent-while-plugged): Added macro to facilitate internal use
4109         of gnus-agent-toggle-plugged.
4110         (gnus-agent-fetch-group): Use new gnus-agent-while-plugged to
4111         temporarily open servers.
4112         (gnus-agent-get-undownloaded-list): Sort list of article numbers
4113         as sorting gnus-newsgroup-headers is wrong.
4114         (gnus-agent-summary-fetch-group): Use new gnus-agent-while-plugged
4115         to temporarily open servers. Corrected logic to handle setting
4116         gnus-agent-mark-unread-after-downloaded.
4117         (gnus-agent-fetch-articles): Now handles headers with missing
4118         article sizes and/or missing article lengths.  Now clears the
4119         message buffer when finished.
4120         (gnus-agent-fetch-group-1): Position point before calling
4121         gnus-summary-set-agent-mark.
4122         (gnus-get-predicate): Corrected description, parameter is
4123         predicate not category.
4124         (gnus-agent-expire-group): Adapted the gnus-agent-expire-* code to
4125         provide a separate single group expiration function.
4126         (gnus-agent-regenerate-group): Now clears the message buffer when
4127         finished.
4128
4129 2003-02-23  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4130
4131         * gnus.el (gnus-agent-target-move-group-header): New variable.
4132         * gnus-draft.el (gnus-draft-send): If special header
4133         "X-Gnus-Agent-Target-Move-Group" is present, do like Gcc into
4134         that group, instead of performing the regular sending functions.
4135
4136 2003-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4137
4138         * gnus-xmas.el (gnus-xmas-mime-button-menu): Accept a prefix arg.
4139
4140 2003-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
4141
4142         * message.el (message-user-fqdn, message-valid-fqdn-regexp): New
4143         variables.
4144         (message-make-fqdn): Use it.  Improved validity check.
4145
4146 2003-02-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4147
4148         * message.el (message-user-mail-address): Check whether
4149         user-mail-address looks valid.
4150
4151         * gnus-msg.el (gnus-mailing-list-followup-to): New function.
4152
4153         * gnus-util.el (gnus-fetch-original-field): New function.
4154
4155 2003-02-23  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4156
4157         * message.el (message-mode): \\(...\\) around additional
4158         paragraph-separate alternative.
4159
4160 2003-02-23  Jesper Harder  <harder@ifa.au.dk>
4161
4162         * gnus-art.el (gnus-mime-button-commands): Add ellipsis.
4163         (gnus-mime-button-menu): Define MIME popup menu with easy-menu to
4164         display key bindings.
4165         (gnus-mime-button-menu): Rewrite.
4166
4167 2003-02-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4168
4169         * gnus-art.el (gnus-button-url-regexp): Removed `.
4170
4171 2003-02-23  Max Froumentin  <mf@w3.org>
4172
4173         * gnus-art.el (gnus-button-url-regexp): Remove `, enter '.
4174
4175 2003-02-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4176
4177         * gnus-art.el (gnus-mime-action-on-part): Require a match
4178         interactively.
4179
4180         * gnus-start.el (gnus-save-newsrc-file): Use
4181         gnus-backup-startup-file.
4182         (gnus-backup-startup-file): New variable.
4183
4184 2003-02-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4185
4186         * gnus.el (gnus-summary-buffer-name): Moved function here.
4187
4188         * gnus-draft.el (defun): Remove debug.
4189
4190 2003-02-22  Jesper Harder  <harder@ifa.au.dk>
4191
4192         * gnus-sum.el (gnus-summary-refer-article): Skip method if we
4193         can't open server.
4194
4195 2003-02-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4196
4197         * gnus-draft.el (defun): Configure posting styles.
4198
4199         * gnus-start.el (gnus-get-unread-articles-in-group): Make sure
4200         the entry for the group exists before we alter it.
4201
4202 2003-02-22  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4203
4204         * message.el (message-mode): MML tags separate paragraphs.  Small
4205         change from David S Goldberg <david.goldberg6@verizon.net>.
4206
4207         * gnus-agent.el (gnus-agent-get-undownloaded-list): Sort
4208         `gnus-newsgroup-headers'.
4209
4210         * gnus-art.el (gnus-article-refer-article): Grok more message id
4211         formats.  From Karl Pfl\e,Ad\e(Bsterer <sigurd@12move.de>.
4212
4213 2003-02-22  Jesper Harder  <harder@ifa.au.dk>
4214
4215         * mm-decode.el (mm-path-name-rewrite-functions): Doc fix: don't
4216         use "path name".
4217
4218 2003-02-21  Teodor Zlatanov  <tzz@lifelogs.com>
4219
4220         * gnus-sum.el (gnus-summary-move-article)
4221         (gnus-summary-expire-articles): send data header for article, not
4222         just article ID
4223
4224         * gnus-registry.el (gnus-registry-hashtb, gnus-register-action)
4225         (gnus-register-spool-action): added hashtable of message ID keys
4226         with message motion data
4227
4228 2003-02-21  Florian Weimer  <fw@deneb.enyo.de>
4229         From Reiner Steib  <Reiner.Steib@gmx.de>.
4230
4231         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): New
4232         variable, used in `gnus-button-mid-or-mail-heuristic'.
4233         (gnus-button-mid-or-mail-heuristic): New function derived from
4234         Florian Weimer's Perl script.
4235         (gnus-button-handle-mid-or-mail): Allow a function instead of
4236         'guess.
4237         (gnus-button-guessed-mid-regexp): Removed.
4238
4239 2003-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4240
4241         * message.el (message-resend): Bind message-setup-hook to nil;
4242         remove X-Draft-From header.
4243
4244 2003-02-20  Jesper Harder  <harder@ifa.au.dk>
4245
4246         * gnus-sum.el (gnus-simplify-subject-fully, gnus-subject-equal)
4247         (gnus-newsgroup-undownloaded)
4248         (gnus-summary-save-parts-default-mime, gnus-auto-select-next):
4249         Doc fixes.
4250
4251 2003-02-17  John Paul Wallington  <jpw@gnu.org>
4252
4253         * gnus.el (gnus-shell-command-separator, gnus-email-address)
4254         (gnus-default-charset, gnus-other-frame-parameters): Doc fixes.
4255
4256 2003-02-20  Jesper Harder  <harder@ifa.au.dk>
4257
4258         * gnus-spec.el (gnus-xmas-format): Use insert instead of
4259         insert-string which is obsolete in Emacs 21.4.
4260
4261         * message.el (message-cross-post-followup-to-header): do.
4262
4263         * spam.el (spam-ifile-register-with-ifile)
4264         (spam-stat-register-spam-routine)
4265         (spam-stat-register-ham-routine)
4266         (spam-bogofilter-register-with-bogofilter): do.
4267
4268         * mailcap.el (mailcap-mime-data): Fix typo.
4269
4270         * gnus-topic.el (gnus-topic-make-menu-bar): Add ellipsis.
4271
4272 2003-02-19  Reiner Steib  <Reiner.Steib@gmx.de>
4273
4274         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
4275         (gnus-cite-parse): Renamed `gnus-unsightly-citation-regexp' to
4276         `gnus-cite-unsightly-citation-regexp'.
4277
4278 2003-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4279
4280         * gnus-msg.el (gnus-copy-article-buffer): Copy an article header
4281         even if there's just a header.
4282
4283 2003-02-19  Jesper Harder  <harder@ifa.au.dk>
4284
4285         * message.el (message-fix-before-sending): Fix highlighting of
4286         illegible and invisible text.
4287
4288         * gnus-util.el (gnus-multiple-choice): Separate choices with
4289         ",\e,A \e(B".  Suggested by Dan Jacobson <jidanni@dman.ddts.net>.
4290
4291 2003-02-18  Jesper Harder  <harder@ifa.au.dk>
4292
4293         * gnus-sum.el (gnus-summary-exit-no-update): Use gnus-kill-buffer.
4294
4295 2003-02-18  Teodor Zlatanov  <tzz@lifelogs.com>
4296
4297         * spam.el (spam-ham-move-routine)
4298         (spam-mark-spam-as-expired-and-move-routine): use
4299         gnus-summary-kill-process-mark and gnus-summary-yank-process-mark
4300         around process-mark manipulation on the group
4301
4302 2003-02-17  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4303
4304         * gnus-sum.el (gnus-summary-make-menu-bar): Add MIME/Multipart
4305         submenu.
4306
4307 2003-02-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4308
4309         * mail-source.el (mail-source-fetch): Reverse the return value of
4310         the continuation question.
4311
4312 2003-02-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4313
4314         * nndraft.el (nndraft-request-move-article): Bind
4315         nnmh-allow-delete-final to t.
4316
4317 2003-02-14  ShengHuo ZHU  <zsh@cs.rochester.edu>
4318
4319         * mm-uu.el (mm-uu-uu-filename): Fix use of character constant.
4320
4321 2003-02-11  Stefan Monnier  <monnier@cs.yale.edu>
4322
4323         * nntp.el (nntp-accept-process-output): Don't use point-max to get
4324         the buffer's size.
4325
4326 2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>
4327
4328         * nnheader.el: Added cygwin to system-type comparisons.
4329
4330 2003-01-27  Juanma Barranquero  <lektu@terra.es>
4331
4332         * imap.el (imap-mailbox-status): Fix typo.
4333
4334 2003-02-14  ShengHuo ZHU  <zsh@cs.rochester.edu>
4335
4336         * gnus-art.el (gnus-article-prepare): Don't set agent mark if
4337         online.
4338
4339 2003-02-14  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4340
4341         * gnus-agent.el (gnus-agent-group-make-menu-bar): Include all
4342         commands.
4343         * gnus-sum.el: Small change from Frank Weinberg
4344         <frank@usenet-rundfahrt.de>:
4345         (gnus-auto-center-group): New variable.
4346         (gnus-summary-read-group-1): Use it.
4347         (gnus-summary-next-group): Fix docstring.
4348
4349 2003-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4350
4351         * gnus-util.el (gnus-faces-at): Simplify.
4352
4353 2003-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
4354
4355         * spam.el (spam-ham-move-routine)
4356         (spam-mark-spam-as-expired-and-move-routine): made the article
4357         move conditional, so it's not called even if there's nothing to move
4358
4359 2003-02-13  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4360
4361         * message.el (message-unix-mail-delimiter): Accept any whitespace
4362         after the email address and before the date; do not require the
4363         space character.  From Kurt B. Kaiser <kbk@shore.net>.
4364
4365 2003-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4366
4367         * gnus-art.el (gnus-article-only-boring-p): Make sure that the
4368         gnus-article-boring-faces variable is bound; use gnus-faces-at.
4369
4370         * gnus-util.el (gnus-faces-at): New macro.
4371
4372 2003-02-13  Michael Shields  <shields@msrl.com>
4373
4374         * gnus-cite.el
4375         (gnus-cite-attribution-suffix, gnus-cite-parse):
4376         Better handling for Microsoft citation styles.
4377         (gnus-unsightly-citation-regexp): New.
4378
4379 2003-02-12  Michael Shields  <shields@msrl.com>
4380
4381         * gnus-art.el (article-strip-banner): Strip both per-group and
4382         per-user-address banners.
4383         (article-really-strip-banner): New.
4384
4385 2003-02-12  Michael Shields  <shields@msrl.com>
4386
4387         * gnus-sum.el (gnus-article-goto-next-page,
4388         gnus-article-goto-prev-page): Call gnus-summary-*-page, instead of
4389         relying on the summary bindings of `n' and `p'.
4390
4391 2003-02-12  Michael Shields  <shields@msrl.com>
4392
4393         * gnus-art.el (gnus-article-only-boring-p): New.
4394         (gnus-article-skip-boring): New.
4395         * gnus-cite.el (gnus-article-boring-faces): New.
4396         * gnus-sum.el (gnus-summary-next-page): Use
4397         gnus-article-only-boring-p.
4398
4399 2003-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
4400
4401         * spam.el (spam-mark-spam-as-expired-and-move-routine)
4402         (spam-ham-move-routine): unmark all articles before marking those
4403         of interest and calling gnus-summary-move-article
4404
4405 2003-02-12  Jesper Harder  <harder@ifa.au.dk>
4406
4407         * gnus.el (gnus-kill-buffer): Move to gnus.el because it's
4408         logically the complement of gnus-get-buffer-create and
4409         gnus-add-buffer.
4410
4411         * gnus-util.el (gnus-kill-buffer): do.
4412
4413         * nnmail.el: Autoload gnus-kill-buffer.
4414
4415 2003-02-11  Kevin Greiner  <kgreiner@xpediantsolutions.com>
4416
4417         * gnus-agent.el (gnus-summary-set-agent-mark): Added call to
4418         gnus-summary-goto-subject as gnus-summary-update-mark operates on
4419         the current LINE.
4420         (gnus-agent-summary-fetch-group): Minimized the number of times
4421         that the article is updated in the buffer.
4422
4423 2003-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
4424
4425         * spam.el (spam-ham-move-routine): use the process-mark instead of
4426         gnus-current-article when moving articles
4427         (spam-mark-spam-as-expired-and-move-routine): ditto, use the process-mark
4428
4429 2003-02-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4430
4431         * gnus-topic.el (gnus-topic-expire-articles): Recursive.
4432         (gnus-topic-catchup-articles): Ditto.
4433         (gnus-topic-mark-topic): Reverse recursive logic.
4434
4435 2003-02-11  Jesper Harder  <harder@ifa.au.dk>
4436
4437         * gnus-sum.el (gnus-summary-refer-thread): Handle case where
4438         gnus-refer-thread-limit is t.
4439
4440 2003-02-10  Jesper Harder  <harder@ifa.au.dk>
4441
4442         * mm-util.el (mm-mule-charset-to-mime-charset): Use
4443         sort-coding-systems to prefer utf-8 over utf-16.
4444
4445 2003-02-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
4446
4447         * gnus-agent.el (gnus-agent-expire-days):
4448         gnus-request-move-article depends on gnus-agent-expire to clean up
4449         the cache after moving the article.  Therefore, g-a-e-d can NOT
4450         default to nil or can gnus-agent-expire be disabled by doing so.
4451         If you don't want to run gnus-agent-expire, don't call it.
4452         (gnus-agent-expire): The broken test to disable gnus-agent-expire
4453         when g-a-e-d was NOT nil was removed.
4454         (gnus-agent-article-name): Removed unnecessary input test as
4455         article IDs are always strings.
4456         (gnus-agent-regenerate-group): Added check to protect against
4457         servers that generate absurdly long article IDs.  Valid IDs are
4458         less than 10 digits to avoid overflow errors.  Fixed logic error
4459         when ensuring that the final article ID is present in the new
4460         alist.
4461
4462 2003-02-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4463
4464         * gnus-topic.el (gnus-topic-goto-missing-topic): Just move to the
4465         next line after finding the parent.
4466
4467 2003-02-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4468
4469         * gnus.el (gnus-version-number): Bumped.
4470
4471 2003-02-08 23:23:27 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
4472
4473         * gnus.el: Oort Gnus v0.15 is released.
4474
4475 2003-02-08  Michael Welsh Duggan  <md5i@cs.cmu.edu>
4476
4477         * nnmail.el (nnmail-split-it): If a message ends up matching the
4478           same mailbox more than once, it will cause duplicates to appear
4479           in the mailbox.
4480
4481 2003-02-08  Simon Josefsson  <jas@extundo.com>
4482
4483         * gnus-sum.el (gnus-summary-select-article): Remove blink removal
4484         code that only worked under Emacs.
4485
4486         * pgg-gpg.el (pgg-gpg-process-region): Don't blink.  From Satyaki
4487         Das <satyaki@chicory.stanford.edu>.
4488
4489 2003-02-08  Jesper Harder  <harder@ifa.au.dk>
4490
4491         * gnus-art.el (gnus-article-refer-article): Use
4492         gnus-replace-in-string.
4493
4494         * gnus-util.el (gnus-map-function): Remove unneeded let-binding.
4495         (gnus-remove-duplicates): do.
4496
4497 2003-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
4498
4499         * gnus-int.el (gnus-internal-registry-spool-current-method): new variable
4500         (gnus-request-scan): set
4501         gnus-internal-registry-spool-current-method to gnus-command-method
4502         before a request-scan operation
4503
4504         * gnus-registry.el (regtest-nnmail): use
4505         gnus-internal-registry-spool-current-method
4506
4507 2003-02-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4508
4509         * mail-source.el (mail-source-fetch): Typo fix.
4510
4511 2003-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
4512
4513         * nnmail.el (nnmail-spool-hook): new hook
4514         (nnmail-cache-insert): call nnmail-spool-hook
4515
4516         * gnus-registry.el: new file with examples of using the hooks
4517
4518         * gnus.el (gnus-registry): added registry customization group
4519         (gnus-group-prefixed-name): improve function to return full group
4520         name optionally
4521         (gnus-group-guess-prefixed-name): shortcut to
4522         gnus-group-prefixed-name, using just the group name
4523         (gnus-group-full-name): always get a group's full name
4524         (gnus-group-guess-full-name): shortcut, using just the group name
4525
4526         * gnus-sum.el (gnus-summary-article-move-hook)
4527         (gnus-summary-article-delete-hook)
4528         (gnus-summary-article-expire-hook): new hooks
4529         (gnus-summary-move-article, gnus-summary-expire-articles)
4530         (gnus-summary-delete-article): invoke the new hooks
4531
4532 2003-02-07  Frank Weinberg  <frank@usenet-rundfahrt.de>
4533
4534         * gnus-art.el (gnus-article-refer-article): Strip leading "news:"
4535         from message-ID
4536
4537 2003-02-07  Jesper Harder  <harder@ifa.au.dk>
4538
4539         * gnus-util.el (gnus-run-hooks): Use save-current-buffer.
4540
4541 2003-02-07  John Paul Wallington  <jpw@gnu.org>
4542
4543         * mm-util.el (mm-delete-duplicates, mm-append-to-file)
4544         (mm-write-region, mm-detect-coding-region): Doc fixes.
4545
4546 2003-02-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4547
4548         * mail-source.el (mail-source-fetch): Ignore errors.
4549         (mail-source-ignore-errors): New variable.
4550
4551         * gnus-sum.el (gnus-summary-refer-thread): Don't re-fetch current
4552         articles.
4553
4554         * gnus-msg.el (gnus-version-expose-system): Change default.
4555
4556 2003-02-07  Vasily Korytov  <deskpot@myrealbox.com>
4557
4558         * gnus-msg.el (gnus-version-expose-system): New variable.
4559
4560 2003-02-07  Simon Josefsson  <jas@extundo.com>
4561
4562         * mml-sec.el (mml-unsecure-message): Don't use kill-region.  Tiny
4563         patch from deskpot@myrealbox.com (Vasily Korytov).
4564
4565 2003-02-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4566
4567         * gnus-art.el (article-display-face): Get the Face header from
4568         the current buffer.
4569
4570 2003-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4571
4572         * gnus-art.el (gnus-mime-view-part-internally): Bind
4573         buffer-read-only to nil.
4574
4575 2003-02-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4576
4577         * gnus-agent.el (gnus-agent-expire-1,2): Pass the dir argument
4578         from g-a-e-1 to g-a-e-2.
4579
4580 2003-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
4581
4582         * spam.el (spam-check-BBDB): no need to regexp-quote the argument
4583         of bbdb-search-simple, use spam-use-BBDB-exclusive
4584         (spam-check-whitelist): use spam-use-whitelist-exclusive
4585         (spam-use-whitelist-exclusive): new variable affecting
4586         spam-use-whitelist
4587         (spam-use-BBDB-exclusive): new variable affecting spam-use-BBDB
4588
4589 2003-02-05  Simon Josefsson  <jas@extundo.com>
4590
4591         * gnus-agent.el (gnus-agent-expire-days): Change default to nil.
4592         (gnus-agent-expire): Don't expire if g-a-e-d is nil.
4593         (gnus-agent-expire): Move most code into gnus-agent-expire-1.
4594         (gnus-agent-expire-1): New.
4595         (gnus-agent-expire-1): Move code into gnus-agent-expire-2.
4596         (gnus-agent-expire-2): New.
4597
4598 2003-02-05  Jesper Harder  <harder@ifa.au.dk>
4599
4600         * gnus-util.el (gnus-delete-if): Rename to gnus-remove-if.
4601         "delete-if" is misleading because it isn't actually destructive.
4602
4603         * gnus-topic.el (gnus-group-prepare-topics): Use new name.
4604
4605         * nnmail.el (nnmail-purge-split-history): do.
4606
4607         * gnus-win.el (gnus-get-buffer-window): do.
4608
4609         * gnus-sum.el (gnus-simplify-whitespace): Remove unnecessary
4610         let-binding.
4611         (gnus-simplify-all-whitespace): do.
4612
4613 2003-02-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4614
4615         * gnus-delay.el (gnus-delay-article): Fix binding of the
4616         nndraft:delayed group.
4617
4618 2003-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
4619
4620         * gnus.el (spam group parameters): change 'other to 'const in
4621         the group parameter definitions to soothe XEmacs
4622
4623 2003-02-04  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4624
4625         * gnus-delay.el (gnus-delay-article): Really create
4626         nndraft:delayed group if it doesn't exist.
4627
4628 2003-02-04  Jesper Harder  <harder@ifa.au.dk>
4629
4630         * gnus-sum.el (gnus-summary-search-article): Speed up by
4631         disabling various visual features while searching.
4632         (gnus-summary-recenter): Test gnus-auto-center-summary first.
4633
4634 2003-02-03  Jesper Harder  <harder@ifa.au.dk>
4635
4636         * spam.el (spam-list-of-checks): Don't quote nil and t in
4637         docstrings.  From the elisp manual:
4638
4639            When a documentation string refers to a Lisp symbol, write
4640            it [..] with single-quotes around it.  [..] There are two
4641            exceptions: write t and nil without single-quotes.
4642
4643         * messcompat.el (message-from-style): do.
4644
4645         * message.el (message-send-mail): do.
4646
4647         * gnus-util.el (gnus-use-byte-compile): do.
4648
4649         * gnus-score.el (gnus-score-lower-thread): do.
4650
4651         * gnus-int.el (gnus-server-unopen-status): do.
4652
4653         * gnus.el (gnus-define-group-parameter, gnus-large-newsgroup)
4654         (large-newsgroup-initial, gnus-install-group-spam-parameters): do.
4655
4656         * gnus-cus.el (gnus-group-customize, gnus-score-parameters)
4657         (gnus-group-parameters): do.
4658
4659         * gnus-art.el (gnus-article-mime-match-handle-function): do.
4660
4661         * mm-decode.el (mm-text-html-renderer): do.
4662
4663 2003-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4664
4665         * nnheader.el (nnheader-directory-separator-character): Change the
4666         way to compute the dafault value.
4667
4668 2003-02-02  Jesper Harder  <harder@ifa.au.dk>
4669
4670         * gnus-art.el (gnus-button-handle-describe-key): Implement it.
4671         (gnus-button-alist): Fix regexp for describe-key.
4672         (gnus-button-handle-describe-function)
4673         (gnus-button-handle-describe-variable)
4674         (gnus-button-handle-apropos, gnus-button-handle-apropos-command)
4675         (gnus-button-handle-apropos-variable)
4676         (gnus-button-handle-apropos-documentation): Docstring fix.
4677
4678         * gnus-util.el (gnus-kill-buffer): Use get-buffer.
4679
4680 2003-02-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4681
4682         * gnus-draft.el (gnus-group-send-queue): Bind gnus-posting-styles
4683         to nil.
4684
4685         * nnmail.el: Removed gnus-util autoload.
4686
4687         * gnus.el: Use gnus-prin1-to-string throughout.
4688
4689         * gnus-util.el (gnus-prin1-to-string): Bind print-length and
4690         print-level.
4691
4692         * gnus-art.el (article-display-x-face): Removed grey x-face stuff.
4693         (gnus-treat-display-grey-xface): Removed.
4694
4695         * gnus-fun.el (gnus-grab-cam-face): New.
4696         (gnus-convert-image-to-gray-x-face): Removed.
4697         (gnus-convert-gray-x-face-to-xpm): removed.
4698         (gnus-convert-gray-x-face-region): Removed.
4699         (gnus-grab-gray-x-face): Removed.
4700
4701         * nnmail.el (nnmail-expiry-wait-function): Doc indent.
4702
4703 2003-01-31  Jesper Harder  <harder@ifa.au.dk>
4704
4705         * gnus-util.el (gnus-kill-buffer): Functions in gnus-util
4706         shouldn't depend on the rest of Gnus, so test if gnus-buffers is
4707         bound.
4708
4709         * nnmail.el (nnmail-cache-close): Use gnus-kill-buffer.
4710
4711 2003-01-30  Jesper Harder  <harder@ifa.au.dk>
4712
4713         * gnus-cite.el (gnus-cite-reply-regexp, gnus-cite-always-check):
4714         Remove -- these are bogus options which are never used.
4715
4716 2003-01-29  Jesper Harder  <harder@ifa.au.dk>
4717
4718         * gnus-art.el (gnus-article-mode): Use summary tool bar.
4719
4720 2003-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
4721
4722         * spam.el (spam-check-blackholes)
4723         (spam-blackhole-good-server-regex): new variable to skip some IPs
4724         when checking blackholes; use it
4725         (spam-check-bogofilter-headers)
4726         (spam-bogofilter-bogosity-positive-spam-header): new variable, in
4727         case more X-Bogosity is used than just "Yes/No"
4728         (spam-ham-move-routine): semi-fixed, only first article is
4729         properly moved now
4730
4731 2003-01-27  Jesper Harder  <harder@ifa.au.dk>
4732
4733         * gnus-util.el (gnus-kill-buffer): Remove buffer from gnus-buffers
4734         as well.
4735
4736         * gnus-sum.el (gnus-select-newsgroup): Use gnus-kill-buffer.
4737
4738         * gnus-score.el (gnus-score-headers, gnus-score-find-bnews): do.
4739
4740         * gnus-start.el (gnus-save-newsrc-file, gnus-clear-system): do.
4741
4742         * gnus-bcklg.el (gnus-backlog-shutdown): do.
4743
4744         * gnus-srvr.el (gnus-server-exit, gnus-browse-exit): do.
4745
4746 2003-01-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4747
4748         * gnus-fun.el (gnus-face-encode): New function.
4749         (gnus-convert-png-to-face): Use it.
4750
4751         * gnus-sum.el (gnus-summary-make-menu-bar): Added M-& to marks.
4752
4753 2003-01-26  Jesper Harder  <harder@ifa.au.dk>
4754
4755         * mm-decode.el (mm-dissection-list): Remove.
4756         (mm-dissect-singlepart): Don't push to mm-dissection-list, it's
4757         only used in mm-remove-all-parts.
4758         (mm-remove-all-parts): Remove it, it's never called.
4759
4760 2003-01-25  Simon Josefsson  <jas@extundo.com>
4761
4762         * gnus-group.el (gnus-group-make-group): Report errors.
4763
4764         * nnimap.el (nnimap-request-create-group): Ditto.
4765
4766         * sieve-manage.el (sieve-manage-is-okno): Parse literal strings.
4767
4768         * sieve.el (sieve-upload): Fix error printing.
4769
4770         * mm-encode.el (mm-qp-or-base64): Always QP iff
4771         mm-use-ultra-safe-encoding and cleartext PGP.
4772
4773         * gnus-sum.el (gnus-summary-select-article): Inhibit
4774         redisplay (mainly for secured messages).
4775
4776         * nnmail.el (nnmail-article-group): Copy body too (but don't
4777         process it).
4778
4779 2003-01-25  Jesper Harder  <harder@ifa.au.dk>
4780
4781         * gnus-art.el (gnus-article-setup-buffer): Reset
4782         gnus-button-marker-list.
4783
4784 2003-01-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4785
4786         * nntp.el (nntp-read-timeout): Default to using a second delay
4787         under Microsoft Windows.
4788
4789 2003-01-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4790
4791         * nnheader.el (nnheader-directory-separator-character): New
4792         variable.
4793
4794 2003-01-24  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4795
4796         * gnus-agent.el (gnus-agent-max-fetch-size)
4797         (gnus-agent-article-alist, gnus-agent-get-undownloaded-list)
4798         (gnus-agent-catchup, gnus-agent-summary-fetch-group)
4799         (gnus-agent-fetch-articles, gnus-agent-backup-overview-buffer)
4800         (gnus-agent-flush-cache, gnus-agent-fetch-headers)
4801         (gnus-agent-braid-nov, gnus-agent-load-alist)
4802         (gnus-agent-article-alist-save-format)
4803         (gnus-agent-read-agentview, gnus-agent-save-alist)
4804         (gnus-agent-fetch-group-1, gnus-agent-expire)
4805         (gnus-agent-uncached-articles, gnus-agent-retrieve-headers)
4806         (gnus-agent-regenerate-group): Reformat to keep under eighty
4807         columns.  Reword docstrings so that first line is under eighty
4808         chars and a complete sentence.  Still need to work on the rear
4809         end of the file, in particular gnus-agent-expire.
4810
4811 2003-01-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4812
4813         * gnus-agent.el (gnus-agentize): Indent.
4814
4815         * gnus.el (gnus-version-number): Bumped.
4816
4817 2003-01-24 20:32:44 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
4818
4819         * gnus.el: Oort Gnus v0.14 is released.
4820
4821 2003-01-24  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4822
4823         * gnus-sum.el (gnus-summary-prepare-threads): Reset state for %B
4824         before beginning.  Tiny patch from Mark Thomas
4825         <swoon@bellatlantic.net>.
4826
4827 2003-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
4828
4829         * spam.el (spam-check-blackholes, spam-split)
4830         (spam-mark-junk-as-spam-routine, spam-summary-prepare-exit): added
4831         gnus-message calls to show to users what spam.el is doing
4832
4833 2003-01-24  Jesper Harder  <harder@ifa.au.dk>
4834
4835         * gnus-msg.el (gnus-message-replysign)
4836         (gnus-message-replyencrypt): Fix typo.
4837
4838 2003-01-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4839
4840         * gnus-art.el (gnus-mime-security-show-details): Toggle showing
4841         details.
4842
4843 2003-01-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4844
4845         * gnus-art.el (gnus-article-press-button): let* -> let.
4846         (gnus-mime-security-show-details): Cleaned up.
4847         (gnus-mime-security-press-button): Save excursion.
4848         (gnus-insert-mime-security-button): Clean up.
4849
4850         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Doc fix.
4851
4852         * gnus-async.el (gnus-async-wait-for-article): Don't use a
4853         timeout.
4854
4855         * nntp.el (nntp-accept-process-output): Removed timeout.
4856         (nntp-read-timeout): New variable.
4857         (nntp-accept-process-output): Use it.
4858
4859         * gnus-sum.el (gnus-data-find-list): Remove *.
4860
4861 2003-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
4862
4863         * gnus-sum.el (gnus-summary-first-subject): Fixed bug that I
4864         introduced on 2002-01-22.
4865         (gnus-summary-first-unseen-or-unread-subject): Ditto.
4866
4867 2003-01-23  Teodor Zlatanov  <tzz@lifelogs.com>
4868
4869         * spam.el (spam-check-regex-headers, spam-list-of-checks)
4870         (spam-regex-headers-spam, spam-regex-headers-ham): added spam/ham
4871         checks of incoming mail based on simple header regexp matching
4872
4873 2003-01-22  Teodor Zlatanov  <tzz@lifelogs.com>
4874
4875         * gnus-sum.el (gnus-spam-mark): set to `$'
4876
4877 2003-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
4878
4879         * gnus-agent.el (gnus-agent-get-undownloaded-list): Now computes
4880         gnus-newsgroup-unfetched, the list of articles whose headers have
4881         not been fetched from the server.
4882
4883         * gnus-sum.el (gnus-summary-find-next): Removed undownloaded
4884         parameter as it never worked due to a bug.  Added check to prevent
4885         selection of any article in the gnus-newsgroup-unfetched list.
4886         (gnus-summary-find-prev): Added check to prevent selection of any
4887         article in the gnus-newsgroup-unfetched list.
4888         (gnus-summary-first-subject): Documented API. Modified
4889         implementation so that constraints are handled independently.
4890         Added check to prevent selection of any article in the
4891         gnus-newsgroup-unfetched list.
4892         (gnus-summary-first-unseen-subject): Updated parameters in
4893         gnus-summary-first-subject call to match new API.
4894         (gnus-summary-first-unseen-or-unread-subject): Ditto.
4895         (gnus-summary-catchup): Do not mark unfetched articles as read.
4896
4897 2003-01-22  Jesper Harder  <harder@ifa.au.dk>
4898
4899         * gnus-art.el (gnus-treat-strip-pgp, gnus-article-hide-pgp-hook):
4900         make-obsolete-variable allows only two arguments in XEmacs and
4901         Emacs 20.
4902
4903         * gnus-sum.el (gnus-summary-wash-hide-map): Remove
4904         gnus-article-hide-pgp.
4905         (gnus-summary-make-menu-bar): do.
4906
4907         * gnus-art.el (gnus-treat-strip-pgp): Make obsolete.
4908         (gnus-treatment-function-alist): Remove gnus-treat-strip-pgp and
4909         gnus-article-hide-pgp.
4910         (article-hide-pgp): Remove.
4911         (gnus-article-hide): Remove gnus-article-hide-pgp.
4912
4913         * gnus.el: Remove gnus-article-hide-pgp
4914
4915 2003-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4916
4917         * message.el (message-required-headers): Doc fix.
4918
4919 2003-01-21  Teodor Zlatanov  <tzz@lifelogs.com>
4920
4921         * spam.el (spam-group-ham-processor-bogofilter-p): fixed bug
4922         (spam-ifile-register-ham-routine, spam-ifile-ham-category): new
4923         option to make ifile a purely binary classifier
4924
4925 2003-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4926
4927         * mml-sec.el (mml-secure-sign-pgpauto): Renamed.
4928         (mml-secure-encrypt-pgpmime): Removed double.
4929
4930         * gnus-sum.el (gnus-summary-mark-article-as-replied): Added
4931         debugging statements.
4932
4933 2003-01-21  Andreas Fuchs  <asf@void.at>
4934
4935         * mml-sec.el (mml-sign-alist): Added pgpauto.
4936
4937 2003-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4938
4939         * gnus.el (gnus-version-number): Bumped version number.
4940
4941 2003-01-21 07:15:41 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
4942
4943         * gnus.el: Oort Gnus v0.13 is released.
4944
4945 2003-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4946
4947         * gnus-art.el (gnus-button-url-regexp): Removed |.
4948
4949         * message.el (message-send-hook): Doc fix.
4950
4951         * gnus-win.el (gnus-buffer-configuration): Display article
4952         instead of article-copy when `reply'.
4953
4954 2003-01-21  Jesper Harder  <harder@ifa.au.dk>
4955
4956         * gnus.el (gnus-format): Change customize group to gnus.
4957         (gnus-cache): Add link.
4958         (gnus-group-charter-alist): Fix docstring.
4959
4960 2003-01-20  Jesper Harder  <harder@ifa.au.dk>
4961
4962         * mailcap.el (mailcap-print-command): lpr-command might be
4963         unbound in XEmacs.
4964
4965 2003-01-18  Kevin Greiner  <kgreiner@xpediantsolutions.com>
4966
4967         * gnus-agent.el (gnus-agent-regenerate-group): Added interactive form.
4968
4969         * gnus-sum.el (gnus-summary-update-article-line): Fixed
4970         calculation of net characters added for use in the gnus-data
4971         structure.
4972
4973 2003-01-18  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
4974
4975         * nnmail.el (nnmail-process-unix-mail-format): Improve error
4976         message.  Suggested by Jari Aalto.
4977
4978 2003-01-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4979
4980         * gnus-art.el (gnus-article-followup-with-original): Clean up.
4981         (gnus-article-reply-with-original): Ditto.
4982
4983         * gnus-sum.el (gnus-summary-catchup): Make sure downloadable,
4984         read articles don't become unread.
4985
4986 2003-01-17  Simon Josefsson  <jas@extundo.com>
4987
4988         * gnus-fun.el (gnus-x-face-from-file):
4989         (gnus-face-from-file): Suggest image format in minibuffer prompt.
4990
4991         * gnus-fun.el (gnus-convert-image-to-x-face-command)
4992         (gnus-convert-image-to-face-command): Doc fix.
4993
4994 2003-01-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4995
4996         * gnus-fun.el (gnus-convert-face-to-png): Protect against errors.
4997
4998 2003-01-17  Jesper Harder  <harder@ifa.au.dk>
4999
5000         * gnus-art.el (gnus-mime-print-part): Use mm-save-part-to-file to
5001         avoid encoding problems.
5002
5003         * mailcap.el (mailcap-ps-command): New variable.
5004         (mailcap-mime-data): Add print entry where applicable.  Use
5005         pdftotext on a tty.
5006
5007 2003-01-16  ShengHuo ZHU  <zsh@cs.rochester.edu>
5008
5009         * gnus-sum.el (gnus-alter-header-function): Add type and group.
5010
5011 2003-01-16  Simon Josefsson  <jas@extundo.com>
5012
5013         * gnus-fun.el (gnus-convert-image-to-x-face-command)
5014         (gnus-convert-image-to-face-command, gnus-x-face-from-file)
5015         (gnus-face-from-file): Doc fix; don't mention image format.
5016
5017 2003-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
5018
5019         * spam.el (spam-get-article-as-filename): new function (unused for now)
5020         (spam-get-article-as-buffer): new function
5021         (spam-get-article-as-string): use spam-get-article-as-buffer
5022         (spam-summary-prepare-exit): fixed bug, noticed by Malcolm Purvis
5023
5024 2003-01-15  ShengHuo ZHU  <zsh@cs.rochester.edu>
5025
5026         * gnus-agent.el: Don't use `path'.
5027         From the GNU coding standards:
5028
5029             Please do not use the term ``pathname'' that is used in Unix
5030             documentation; use ``file name'' (two words) instead.  We use
5031             the term ``path'' only for search paths, which are lists of
5032             directory names.
5033
5034         * nnsoup.el (nnsoup-file-name): Ditto.
5035
5036         * nnmail.el (nnmail-pathname-coding-system): Ditto.
5037         (nnmail-group-pathname): Ditto.
5038
5039         * nnimap.el (nnimap-group-overview-filename): Ditto.
5040
5041         * nnheader.el (nnheader-pathname-coding-system): Ditto.
5042         (nnheader-group-pathname): Ditto.
5043
5044         * nnfolder.el (nnfolder-group-pathname): Ditto.
5045
5046         * gnus.el (gnus-home-directory): Ditto.
5047
5048         * gnus-group.el (gnus-group-icon-list): Ditto.
5049
5050 2003-01-16  Jesper Harder  <harder@ifa.au.dk>
5051
5052         * gnus-art.el (gnus-mime-print-part): Use mm-handle-media-type.
5053
5054         * message.el (message-mode-menu): Use it.
5055         (message-mode-menu): Deactivate "Yank Original" if there's no
5056         reply buffer.
5057
5058         * messagexmas.el (message-xmas-redefine): Redefine in XEmacs.
5059
5060         * message.el (message-mark-active-p): New function.
5061
5062 2003-01-15  Teodor Zlatanov  <tzz@lifelogs.com>
5063
5064         * spam.el (spam-use-bogofilter-headers, spam-bogofilter-header)
5065         (spam-bogofilter-database-directory): new variables
5066         (spam-check-bogofilter-headers, spam-check-bogofilter)
5067         (spam-bogofilter-register-with-bogofilter)
5068         (spam-bogofilter-register-spam-routine)
5069         (spam-bogofilter-register-ham-routine)
5070         (spam-group-ham-processor-bogofilter-p): new functions for the new
5071         Bogofilter interface
5072         (spam-summary-prepare-exit): use the new Bogofilter functions
5073         (spam-list-of-checks): added spam-use-bogofilter-headers
5074         (spam-bogofilter-score): rewrote function
5075         (spam-check-bogofilter): optional score parameter, uses
5076         spam-check-bogofilter-headers better
5077         (spam-check-bogofilter-headers): optional score parameter
5078
5079         * gnus.el (gnus-install-group-spam-parameters): new variable, t by
5080         default, in the gnus-start customization group.  Used to disable
5081         the spam-*/ham-* parameters.
5082         (gnus-group-ham-exit-processor-bogofilter): new ham processor
5083
5084 2003-01-15  Jesper Harder  <harder@ifa.au.dk>
5085
5086         * gnus-xmas.el (gnus-xmas-redefine): Use region-exists-p in
5087         XEmacs.
5088
5089         * gnus-ems.el (gnus-mark-active-p): do.
5090
5091 2003-01-15  Kevin Ryde  <user42@zip.com.au>
5092
5093         * gnus.texi (Using MIME): Mention auto-compression-mode with
5094         gnus-mime-copy-part.
5095
5096 2003-01-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5097
5098         * message.el (message-send): Don't warn about duplicates when
5099         superseding.
5100
5101 2003-01-15  Simon Josefsson  <jas@extundo.com>
5102
5103         * nnimap.el (nnimap-split-download-body): New variable.
5104         (nnimap-split-articles): Use it.
5105
5106 2003-01-14  Kevin Greiner  <kgreiner@xpediantsolutions.com>
5107
5108         * gnus-agent.el (gnus-agent-check-overview-buffer): This data
5109         integrity checker was incorrectly flagging, and removing, articles
5110         whose article number was negative.
5111         (gnus-agent-fetch-group-1): When executed in the group's summary
5112         buffer, refresh each downloaded line to update the status flag and
5113         font.  Preserve the value of gnus-newsgroup-headers so that
5114         gnus-agent-fetch-articles can split the requests by size.
5115         (gnus-agent-expire): Corrected day calculation for when
5116         gnus-agent-expire-days contains a list.
5117
5118 2003-01-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5119
5120         * gnus-audio.el (gnus-audio-au-player): Use executable-find.
5121
5122 2003-01-13  Jhair Tocancipa Triana <jhair_tocancipa@@gmx.net>
5123
5124         * gnus-audio.el (gnus-audio-au-player, gnus-audio-wav-player): Use
5125           /usr/bin/play as default player.
5126           (gnus-audio-play): Added ARG-DESCRIPTOR to prompt for a file to play.
5127
5128 2003-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5129
5130         * gnus-msg.el (gnus-inews-add-send-actions): Allow a list of
5131         articles to be marked as well.
5132
5133 2003-01-14  Kevin Greiner  <kgreiner@xpediantsolutions.com>
5134         * gnus-agent.el (gnus-agent-get-undownloaded-list): Include the
5135         fictious headers generated by nnagent (ie. Undownloaded Article
5136         ####) in the list of articles that have not been downloaded.
5137
5138         * gnus-int.el (): Added require declarations to resolve
5139         compile-time warnings.
5140         (gnus-open-server): If the server status is set to offline,
5141         recursively execute gnus-open-server to open the offline backend
5142         (e.g. nnagent).
5143
5144 2003-01-14  Jesper Harder  <harder@ifa.au.dk>
5145
5146         * gnus-art.el (gnus-article-reply-with-original): Use
5147         gnus-mark-active-p.
5148         (gnus-article-followup-with-original): do.
5149
5150 2003-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
5151
5152         * gnus-sum.el: Removed `(when t ...)' around `gnus-define-keys'.
5153
5154 2003-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
5155
5156         * gnus-score.el (gnus-score-edit-file-at-point): New function.
5157         (gnus-score-find-trace): Bind it to `e' key.  Added `q' for quit.
5158
5159 2003-01-13  Romain FRANCOISE  <romain@orebokech.com>
5160
5161         * gnus-fun.el (gnus-x-face-from-file): Quote file name.
5162         (gnus-face-from-file): Ditto.
5163
5164 2003-01-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5165
5166         * gnus-sum.el (gnus-articles-to-read): Don't just apply
5167         gnus-alter-articles-to-read-function to the unread articles.
5168
5169 2003-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
5170
5171         * deuglify.el (gnus-article-outlook-unwrap-lines)
5172         (gnus-article-outlook-repair-attribution)
5173         (gnus-article-outlook-rearrange-citation): New function names,
5174         renamed from "gnus-outlook-" to "gnus-article-outlook-".  Changed
5175         doc-string.
5176
5177         * gnus-sum.el (gnus-summary-mode-map): Use new function names,
5178         removed `W k' key binding (use `W Y f' instead).
5179         (gnus-summary-make-menu-bar): Use new function names.
5180
5181 2003-01-13  Simon Josefsson  <jas@extundo.com>
5182
5183         * gnus-fun.el (gnus-random-x-face): Doc fix.
5184         (gnus-insert-random-x-face-header): New function.
5185
5186 2003-01-13  Jesper Harder  <harder@ifa.au.dk>
5187
5188         * gnus-sum.el (gnus-summary-make-menu-bar): Deactivate items if
5189         mark is not active.
5190
5191         * gnus-msg.el (gnus-inews-do-gcc): Comment.
5192
5193         * gnus-ems.el (gnus-mark-active-p): New function.
5194
5195         * gnus-group.el (gnus-topic-mode-p): New function.
5196         (gnus-group-make-menu-bar): Show more key bindings in topic mode.
5197         Deactivate items if mark is not active.
5198
5199 2003-01-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5200
5201         * gnus.el (gnus-version-number): Bumped version.
5202         (gnus-summary-line-format): Doc fix.
5203
5204 2003-01-12 22:02:49 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
5205
5206         * gnus.el: Oort Gnus v0.12 is released.
5207
5208 2003-01-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5209
5210         * mail-source.el (mail-sources): Removed autoload to make it
5211         compile under XEmacs.
5212
5213 2003-01-12  Raymond Scholz  <ray-2003@zonix.de>
5214
5215         * gnus-msg.el (gnus-confirm-mail-reply-to-news):  May be a
5216         regexp or a function too.
5217         (gnus-confirm-treat-mail-like-news): New variable.  Ask for
5218         confirmation even if the original article is mail.
5219
5220 2003-01-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5221
5222         * gnus-msg.el (gnus-inews-add-send-actions): Get the right
5223         articles to be marked when not yanking.
5224
5225 2003-01-12  Fran\e,Ag\e(Bois-David Collin  <Francois-David.Collin@curie.fr>
5226
5227         * mm-decode.el (mm-get-part): Use mm-with-unibyte-current-buffer.
5228
5229 2003-01-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5230
5231         * gnus-fun.el (gnus-face-from-file): Autoload.
5232
5233         * gnus-cite.el (gnus-cite-delete-overlays): Protect against more
5234         errors.
5235
5236 2003-01-12  Simon Josefsson  <jas@extundo.com>
5237
5238         * sieve.el (sieve-upload-and-bury): New.  Suggested by
5239         kai.grossjohann@uni-duisburg.de (Kai Gro\e,A_\e(Bjohann).
5240
5241         * sieve-mode.el (sieve-mode-map): Bind s-u-a-b to C-c C-c.
5242         Suggested by kai.grossjohann@uni-duisburg.de (Kai Gro\e,A_\e(Bjohann).
5243
5244 2003-01-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5245
5246         * gnus-art.el (gnus-ignored-headers): Don't include the ^ and :
5247         in every string.
5248
5249         * gnus.el (gnus-version-number): Bumped version number.
5250
5251 2003-01-12 13:46:20 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
5252
5253         * gnus.el: Oort Gnus v0.11 is released.
5254
5255 2003-01-12  Jesper Harder  <harder@ifa.au.dk>
5256
5257         * message.el (message-fetch-reply-field): Narrow to headers.
5258
5259         * gnus-msg.el (gnus-inews-do-gcc): Don't try to mark GCC's as read
5260         if Gnus isn't alive.
5261
5262 2003-01-11  Kevin Greiner  <kgreiner@xpediantsolutions.com>
5263
5264         * gnus-agent.el (gnus-agent-fetch-group-1): Remove downloadable
5265         marks from articles that are already stored in the agent.
5266         (gnus-agent-backup-overview-buffer): New debug tool.  Creates a
5267         backup copy of an invalid .overview file for later analysis.
5268
5269 2003-01-12  Gregorio Gervasio, Jr.  <gtgj@pacbell.net>
5270
5271         * gnus-sum.el (gnus-summary-exit): Reverse change to make group
5272         exit work with two frames.
5273
5274 2003-01-11  Fran\e,Ag\e(Bois-David Collin  <Francois-David.Collin@wanadoo.fr>
5275
5276         * message.el (message-forward-make-body): Use mule4.
5277
5278 2003-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5279
5280         * message.el (message-mode-map): Move wide-reply command.
5281
5282 2003-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
5283
5284         * deuglify.el (gnus-outlook-deuglify-attrib-verb-regexp): Added
5285         castellano.
5286         (gnus-outlook-display-hook): New variable.
5287         (gnus-outlook-display-article-buffer): New function.
5288         (gnus-outlook-unwrap-lines, gnus-outlook-repair-attribution)
5289         (gnus-outlook-deuglify-article): Made them interactive and added
5290         optional arg.  Use `g-o-d-a-b'.
5291         (gnus-article-outlook-deuglify-article): Use `g-o-d-a-b'.
5292
5293         * gnus-sum.el: Added autoloads.
5294         (gnus-summary-mode-map): Added gnus-summary-wash-deuglify-map.
5295         (gnus-summary-make-menu-bar): Added "(Outlook) Deuglify" menu.
5296
5297 2003-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5298
5299         * gnus-art.el (gnus-display-mime): Use the mime emulation
5300         variable.
5301
5302         * gnus-sum.el (gnus-article-emulate-mime): New variable.
5303
5304         * gnus-start.el (gnus-read-newsrc-el-file): Make sure that the
5305         newsrc-alist is initialized properly.
5306
5307         * mail-source.el (mail-sources): Autoload.
5308
5309         * gnus-sum.el (gnus-summary-make-false-root-always): Default to
5310         nil.
5311
5312         * gnus-msg.el (gnus-configure-posting-styles): Make sure we don't
5313         insert two newlines.
5314
5315         * message.el (message-check-news-header-syntax): Compute the
5316         header length correctly.
5317
5318 2003-01-10  Kevin Greiner  <kgreiner@xpediantsolutions.com>
5319
5320         * gnus-agent.el (gnus-agent-expire): Do not remove article from
5321         alist when keeping fetched article file.
5322         (gnus-agent-retrieve-headers): When parsing response for article
5323         numbers, use the same algorithm as gnus-agent-braid-nov to protect
5324         against garbage in the server's response.
5325
5326         * gnus-int.el (gnus-request-expire-articles,
5327         gnus-request-move-article): Only expire when the group's server
5328         has been agentized.
5329
5330 2003-01-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5331
5332         * gnus-cite.el (gnus-cite-delete-overlays): Protect against
5333         errors when deleting overlays.
5334
5335         * gnus-score.el (gnus-score-followup): Allow tracing.
5336
5337         * gnus-art.el (gnus-treat-display-face): New variable.
5338         (article-display-face): New command.
5339
5340         * gnus-fun.el (gnus-face-from-file): New function.
5341         (gnus-convert-face-to-png): Ditto.
5342
5343         * gnus-art.el (gnus-ignored-headers): Added Face.
5344
5345 2003-01-10  Simon Josefsson  <jas@extundo.com>
5346
5347         * nndraft.el (nndraft-request-group): Avoid crash in
5348         directory-files when draft directory doesn't exists.
5349
5350         * gnus-sum.el (gnus-select-article-hook): Add :option.
5351
5352 2003-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
5353
5354         * spam.el (spam-use-stat): new variable
5355         (spam-group-spam-processor-stat-p)
5356         (spam-group-ham-processor-stat-p): new convenience functions
5357         (spam-summary-prepare-exit): add spam/ham processors to sequence
5358         (spam-list-of-checks): add spam-use-stat to list of checks
5359         (spam-split): conditionally load the spam-stat tables
5360         (spam-stat-register-spam-routine, spam-stat-register-ham-routine,
5361         spam-check-ifile): new functions
5362
5363         * spam-stat.el (spam-stat): typo fix
5364         (spam-stat-install-hooks): new variable
5365         (spam-stat-split-fancy-spam-group): added documentation clarification
5366         (spam-stat-split-fancy-spam-threshhold): new variable
5367         (spam-stat-install-hooks): make hooks conditional
5368         (spam-stat-split-fancy): use spam-stat-split-fancy-spam-threshhold
5369
5370         * gnus.el (gnus-group-ham-exit-processor-stat, spam-process): add
5371         spam-stat ham/spam processor symbols
5372
5373 2003-01-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5374
5375         * gnus-start.el (gnus-read-newsrc-el-file): Make sure the .eld
5376         file exists.
5377
5378 2003-01-10  Simon Josefsson  <jas@extundo.com>
5379
5380         * gnus-sum.el (gnus-summary-read-group-1): Don't select first
5381         undownloaded/downloadable only when unplugged.
5382
5383 2003-01-10  Jesper Harder  <harder@ifa.au.dk>
5384
5385         * gnus-srvr.el (gnus-browse-foreign-server): Optimize inner loop.
5386
5387 2003-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
5388
5389         * spam.el (spam-check-ifile): fixed call-process-region to use the
5390         db parameter only if it's set
5391         (spam-ifile-register-with-ifile): ditto
5392
5393 2003-01-09  Alex Schroeder  <alex@emacswiki.org>
5394
5395         * spam-stat.el (spam-stat-save): Set spam-stat-ngood and
5396         spam-stat-nbad before creating the hash table.
5397         (spam-stat-reset): Set spam-stat-ngood and spam-stat-nbad to 0.
5398         Changed copyright statement to FSF.
5399
5400 2003-01-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
5401
5402         * gnus-agent.el (gnus-agent-catchup): Do not mark cached nor
5403         processable articles as read.
5404         (gnus-agent-summary-fetch-series): Remove processable and
5405         downloadable marks on all downloaded articles in the series.
5406
5407         * nntp.el (nntp-report): Throw error after reporting the problem.
5408         (nntp-accept-process-output): Corrected error check to report an
5409         error when the process is nil.
5410
5411 2003-01-09  Simon Josefsson  <jas@extundo.com>
5412
5413         * message.el (message-tool-bar-map): Add preview.
5414
5415 2003-01-09  Jesper Harder  <harder@ifa.au.dk>
5416
5417         * mml.el (mml-preview): Get rid of MIME handles and buffers after
5418         previewing.
5419
5420 2003-01-08  Paul Jarc  <prj@po.cwru.edu>
5421
5422         * nnmaildir.el (nnmaildir--grp-add-art): Fix wrong-type-argument
5423         bug when the (n+1)th article to be added to a group has a smaller
5424         number than the n articles already added.
5425
5426 2003-01-08  Jesper Harder  <harder@ifa.au.dk>
5427
5428         * message.el (message-mode-field-menu): Use backquote.
5429
5430 2003-01-08  Teodor Zlatanov  <tzz@lifelogs.com>
5431
5432         * spam.el: fixed the BBDB autoloads again, using
5433         bbdb-search-simple now (which is not a macro, thank god)
5434
5435         * lpath.el (bbdb-search): removed function from maybe-fbind list
5436
5437         * gnus.el (ham-process-destination): added new parameter for
5438         destination of ham articles found in spam groups at summary exit
5439
5440         * spam.el (spam-get-ifile-database-parameter): use spam-ifile-database-path
5441         (spam-check-ifile, spam-ifile-register-with-ifile): use spam-get-ifile-database-parameter
5442         (spam-ifile-database-path): added new parameter for ifile's database
5443         (spam-move-spam-nonspam-groups-only): new parameter to determine
5444         if spam should be moved from all groups or only some
5445         (spam-summary-prepare-exit): fixed logic to use
5446         spam-move-spam-nonspam-groups-only when deciding to invoke
5447         spam-mark-spam-as-expired-and-move-routine; always invoke that
5448         routine after the spam has been expired-or-moved in case there's
5449         some spam left over; use spam-ham-move-routine in spam groups
5450         (spam-ham-move-routine): new function to move ham articles to the
5451         ham-process-destinations group parameter
5452
5453 2003-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5454
5455         * gnus-spec.el (gnus-parse-complex-format): %~ => ~*.
5456
5457         * gnus-agent.el (gnus-agent-fetch-selected-article): Use
5458         gnus-summary-update-article-line.
5459
5460 2003-01-08  Simon Josefsson  <jas@extundo.com>
5461
5462         * nnmail.el (nnmail-expiry-target-group): Request group, create it
5463         not successful.
5464
5465 2003-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5466
5467         * lpath.el (bbdb-records): Fbind it for both Emacs and XEmacs.
5468
5469 2003-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
5470
5471         * spam.el (spam-check-ifile): fixed the spam-ifile-all-categories
5472         logic, finally
5473
5474 2003-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5475
5476         * gnus-spec.el (gnus-parse-format): %C is a complex format.
5477         (gnus-parse-format): Change to %~.
5478
5479         * message.el (message-generate-headers): Don't generate optional
5480         empty headers.
5481
5482 2003-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
5483
5484         * message.el (message-cross-post-default)
5485         (message-cross-post-note-function, message-shoot-gnksa-feet)
5486         (message-strip-subject-trailing-was, message-change-subject)
5487         (message-mark-insert-file, message-cross-post-followup-to)
5488         (message-cross-post-followup-to, message-mode-map)
5489         (message-generate-unsubscribed-mail-followup-to)
5490         (message-make-mail-followup-to): Minor changes to doc-strings and
5491         error messages.  Updated copyright line.
5492
5493         * message.el (message-make-mail-followup-to,
5494         message-generate-unsubscribed-mail-followup-to): New function
5495         names.  Renamed functions: "-mft" -> "-mail-followup-to".
5496         (message-make-mft, message-gen-unsubscribed-mft): Removed function
5497         names.
5498
5499         * mml.el (mml-preview-insert-mail-followup-to): New function name.
5500         (mml-preview-insert-mft): Removed function name.
5501         (mml-preview): Use new function names.
5502
5503         * gnus-art.el (gnus-article-edit-mode-map): Use new function names.
5504
5505         * message.el (message-mode-field-menu): Moved header related
5506         commands from "Message" to "Field" menu.
5507
5508 2003-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
5509
5510         * message.el (message-generate-headers-first): Added customization
5511         if variable is a list.
5512
5513 2003-01-07  Michael Shields  <shields@msrl.com>
5514
5515         * gnus-art.el (gnus-article-next-page): Correctly handle the case
5516         where the last line of the article is the last line of the window.
5517
5518 2003-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5519
5520         * gnus-msg.el (gnus-debug): Use ignore-errors.
5521
5522         * gnus-agent.el (gnus-agent-fetch-selected-article): Use
5523         `gnus-summary-update-line'.
5524
5525 2003-01-08  Simon Josefsson  <jas@extundo.com>
5526
5527         * gnus-art.el (gnus-unbuttonized-mime-types)
5528         (gnus-buttonized-mime-types): Doc fix.
5529
5530 2003-01-08  Jesper Harder  <harder@ifa.au.dk>
5531
5532         * mm-decode.el (mm-inline-media-tests): .xpm is 'x-xpixmap'.
5533
5534 2003-01-07  ShengHuo ZHU  <zsh@cs.rochester.edu>
5535
5536         * nnrss.el (nnrss-group-alist): Add and clear up.
5537
5538 2003-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
5539
5540         * spam.el: removed unnecessary condition-case for loading bbdb-com.el
5541
5542         * lpath.el (bbdb-search): added BBDB functions for a better way to
5543         fix missing functions
5544
5545         * spam.el (spam-check-ifile): if should be an unless
5546
5547         * spam.el: define 'ignore alias for spam-BBDB-register-routine,
5548         spam-enter-ham-BBDB, and bbdb-create-internal initially to hush up warnings
5549         (spam-ifile-all-categories): doc string fixed to be less than 80 chars
5550
5551 2003-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5552
5553         * gnus-sum.el (gnus-summary-make-menu-bar): Added
5554         gnus-summary-refer-thread to thread menu.
5555
5556 2003-01-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
5557
5558         * gnus-agent.el (gnus-agent-fetch-group-1): When fetching within a
5559         summary buffer, articles that cannot be fetched are marked as
5560         canceled.
5561
5562         * nntp.el (nntp-with-open-group): The quit signal handler must
5563         propagate the quit signal to the next outer handler so that the
5564         caller knows that the request aborted abnormally.
5565
5566 2003-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
5567
5568         * spam.el (spam-check-ifile, spam-ifile-register-with-ifile)
5569         (spam-ifile-register-spam-routine)
5570         (spam-ifile-register-ham-routine): added ifile functionality that
5571         does not use ifile-gnus.el to classify and register articles
5572         (spam-get-article-as-string): convenience function
5573         (spam-summary-prepare-exit): added ifile spam and ham registration
5574         (spam-ifile-all-categories, spam-ifile-spam-category)
5575         (spam-ifile-path, spam-ifile): added customization options
5576
5577         * gnus.el (gnus-group-ham-exit-processor-ifile): added ifile ham
5578         exit processor
5579         (spam-process): added gnus-group-ham-exit-processor-ifile to the
5580         list of choices
5581
5582 2003-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5583
5584         * gnus-score.el (gnus-score-followup): Also score immediate
5585         followups.
5586
5587 2003-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5588
5589         * nnweb.el (nnweb-asynchronous-p): Changed to nil.
5590
5591 2003-01-07  Simon Josefsson  <jas@extundo.com>
5592
5593         * message.el (message-mode-menu): Fix receipt balloon help.
5594
5595 2003-01-07  Jesper Harder  <harder@ifa.au.dk>
5596
5597         * gnus-msg.el (gnus-group-post-news): Don't assume that "" will
5598         always be interpreted as news.
5599
5600 2003-01-07  Simon Josefsson  <jas@extundo.com>
5601
5602         * gnus-sieve.el (gnus-sieve-script): Use the crosspost argument to
5603         gnus-sieve-script, instead of the global variable
5604         gnus-sieve-crosspost.  One-line patch from Steinar Bang
5605         <sb@dod.no>.
5606
5607 2003-01-06  Kevin Greiner  <kgreiner@xpediantsolutions.com>
5608
5609         * gnus.el: Renamed gnus-summary-*-uncached-face as
5610         gnus-summary-*-undownloaded-face to avoid confusing the agent with
5611         the cache.
5612
5613         * gnus-sum.el: Ditto.
5614
5615 2003-01-06  Kevin Greiner  <kgreiner@xpediantsolutions.com>
5616
5617         * gnus-agent.el (gnus-agent-fetch-group): Modified to permit execution
5618         in either the group or summary buffer.
5619         New command "JS", in summary buffer, will fetch articles per the
5620         group's category, predicate, and processable flags.
5621         (gnus-agent-summary-fetch-series): Rewritten to call
5622         gnus-agent-session-fetch-group once with all articles in the
5623         series.
5624         (gnus-agent-summary-fetch-group): Fixed bug and modified code to
5625         return list of fetched articles.
5626         (gnus-agent-fetch-articles): Split fetch list into sublists such
5627         that the article buffer is only slightly larger than
5628         gnus-agent-max-fetch-size.  Added unwind-protect to ensure that
5629         the group's article alist is saved.
5630         (gnus-agent-fetch-headers): The 'killed' and 'cached' marks no
5631         longer result in the agent trying to fetch an article.
5632         (gnus-agent-fetch-group-1): Can now be called in either the group
5633         or summary buffer.  Removed the max-fetch-size code that I added
5634         on 2002-12-13 as that capability is now part of
5635         gnus-agent-fetch-articles.  Added code to update summary buffer.
5636         When called in the group buffer, articles that can not be fetched
5637         are AUTOMATICALLY MARKED AS READ.
5638
5639         * gnus-sum.el (): Modified eval-when-compile to minimize
5640         misleading compilation warnings.
5641         (gnus-update-summary-mark-positions): Changed code to use
5642         gnus-undownloaded-mark rather than gnus-downloaded-mark.
5643
5644         * nnheader.el (nnheader-insert-nov-file): Do not try to insert an
5645         empty file as the parser assumes that the file isn't empty.
5646
5647         * nntp.el (nntp-send-string): The process-send-string call can,
5648         because it performs I/O on the process, change the process' state
5649         from open to closed.  If this happens, call nntp-report
5650         immediately to report the broken connection.
5651         (nntp-report): Rewritten to avoid needing a global variable to
5652         determine the appropriate course of action.  Instead, two function
5653         implementations are provided and the nntp-report function value is
5654         bound to the appropriate implementation.
5655         (nntp-retrieve-data): Moved nntp-report call to end of implementation.
5656         (nntp-with-open-group): Now binds nntp-report's function cell
5657         rather than binding gnus-with-open-group-first-pass.  Added a
5658         condition-case to detect a quit during a nntp command.  When the
5659         quit occurs, the current connection is closed as a fetch articles
5660         request could have several megabytes queued up for reading.
5661         (nntp-retrieve-headers): Bind articles to itself.  If
5662         nntp-with-open-group repeats this command, I must have access to
5663         the original list of articles.
5664         (nntp-retrieve-groups): Ditto for groups.
5665         (nntp-retrieve-articles): Ditto for articles.
5666         (*): Replaced nntp-possibly-change-group calls to
5667         nntp-with-open-group forms in all, but one, occurrance.
5668         (nntp-accept-process-output): Bug fix. Detect when called with
5669         null process.
5670
5671 2003-01-06  Jesper Harder  <harder@ifa.au.dk>
5672
5673         * mm-util.el (mm-find-mime-charset-region): Don't do Latin-9 hack
5674         if we don't need to.
5675         (mm-iso-8859-x-to-15-region): Fix misplaced parenthesis.
5676
5677 2003-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5678
5679         * gnus-group.el (gnus-group-make-web-group): Pass the select
5680         method on to group-create.
5681         (gnus-group-line-format-alist): %U is an integer.
5682
5683         * gnus-sum.el (gnus-summary-exit-no-update): Don't update
5684         ephemeral groups.
5685         (gnus-summary-read-group-1): Ditto.
5686         (gnus-group-make-articles-read): Ditto.
5687
5688         * mm-url.el (mm-url-program): Doc fix.
5689
5690         * message.el (message-mode-map): Rebound
5691         message-insert-wide-reply.
5692
5693 2003-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5694
5695         * gnus-xmas.el (gnus-xmas-group-startup-message): Bind the oort
5696         color as `gnus-group-startup-message' does.
5697
5698 2003-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
5699
5700         * spam.el: fixed line lengths to 80 chars or less
5701
5702         * gnus-sum.el (gnus-read-mark-p): added the spam-mark as a
5703         "not-read" mark
5704         (gnus-summary-mark-forward): added the spam-mark to the list of
5705         marks not to be marked as "read" when viewed
5706
5707 2003-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5708
5709         * gnus-msg.el (gnus-inews-make-draft): Quote article-reply.
5710
5711         * gnus-group.el (gnus-number-of-unseen-articles-in-group):
5712         Protect against unactive groups.
5713
5714         * message.el (message-check-news-header-syntax): Check long
5715         header lines.
5716         (message-check-news-header-syntax): Update `start'.
5717
5718         * gnus-group.el (gnus-group-expire-articles): Doc fix.
5719         (gnus-group-line-format): %U.
5720         (gnus-group-line-format-alist): ?U.
5721         (gnus-number-of-unseen-articles-in-group): New function.
5722
5723         * nntp.el (nntp-accept-process-output): Use a 0.1 second timeout.
5724
5725         * gnus.el (gnus-version-number): Bump version number.
5726
5727 2003-01-05 01:53:30 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
5728
5729         * gnus.el: Oort Gnus v0.10 is released.
5730
5731 2003-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5732
5733         * gnus.el (gnus-version-number): Fix version number.
5734
5735 2003-01-05 01:40:09 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
5736
5737         * gnus.el: Oort Gnus v0.08 is released.
5738
5739 2003-01-04  Jesper Harder  <harder@ifa.au.dk>
5740
5741         * mm-util.el: Add mm-string-make-unibyte.
5742
5743         * gnus-group.el (gnus-group-jump-to-group): Make it work for
5744         UTF-8 groups.
5745
5746 2003-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5747
5748         * gnus.el (gnus-variable-list): Write gnus-format-specs last.
5749
5750         * gnus-sum.el (gnus-summary-goto-subjects): Fix typo.
5751
5752 2003-01-04  Kevin Ryde  <user42@zip.com.au>
5753
5754         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): New
5755         function.
5756
5757 2003-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5758
5759         * gnus-sum.el (gnus-summary-exit): Bind gnus-group-is-exiting-p.
5760         (gnus-summary-read-group-1): Update group line.
5761         (gnus-summary-exit-no-update): Update group on exit.
5762
5763         * gnus-group.el (gnus-group-line-format): Add %*.
5764         (gnus-group-line-format-alist): Ditto.
5765         (gnus-group-insert-group-line): Set it.
5766         (gnus-group-is-exiting-p): New variable.
5767         (gnus-group-insert-group-line): Use it.
5768
5769 2003-01-03  Teodor Zlatanov  <tzz@beld.net>
5770
5771         * spam.el (spam-enter-ham-BBDB, spam-BBDB-register-routine):
5772         enable BBDB ham processing
5773         (spam-blacklist-register-routine): enable blacklist spam processing
5774         (spam-whitelist-register-routine): enable whitelist ham processing
5775         (spam-fetch-field-from-fast): fast fetching of the "from" field
5776         from (gnus-data-list)
5777         (spam-summary-prepare-exit): works completely now
5778         (spam-use-blacklist): oops, should be nil by default
5779         (spam-summary-prepare-exit): spam-use-PROCESSOR is only for
5780         split processing now; before it was for summary exit as
5781         well but that's done with the spam-contents and spam-process
5782         parameters now
5783
5784 2003-01-03  Jesper Harder  <harder@ifa.au.dk>
5785
5786         * mml.el (mml-insert-tag): Don't quote non-ASCII unibyte
5787         characters.
5788
5789 2003-01-02  Teodor Zlatanov  <tzz@lifelogs.com>
5790
5791         * spam.el (spam-group-spam-contents-p, spam-group-ham-contents-p)
5792         (spam-group-processor-p, spam-group-processor-bogofilter-p)
5793         (spam-group-processor-ifile-p, spam-group-processor-blacklist-p)
5794         (spam-group-processor-whitelist-p, spam-group-processor-BBDB-p)
5795         (spam-mark-spam-as-expired-and-move-routine)
5796         (spam-generic-register-routine, spam-BBDB-register-routine)
5797         (spam-ifile-register-routine, spam-blacklist-register-routine)
5798         (spam-whitelist-register-routine): new functions
5799         (spam-summary-prepare-exit): added summary exit processing (expire
5800         or move) of spam-marked articles for spam groups; added slots for
5801         all the spam-*-register-routine functions
5802
5803 2003-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5804
5805         * pop3.el (pop3-retr): Wait 500 msecs.
5806         (pop3-read-response): Ditto.
5807
5808         * gnus-msg.el (gnus-setup-message): Get the evaliation order
5809         right.
5810         (gnus-inews-make-draft): New function.
5811         (gnus-setup-message): Use it.
5812
5813         * message.el (message-required-headers): Add From.
5814
5815 2003-01-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5816         Trivial patch from Norbert Koch <nk@viteno.net>.
5817
5818         * gnus-msg.el (gnus-gcc-externalize-attachments): Fix typo.
5819
5820 2003-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5821
5822         * message.el (message-generate-headers): Let header formatters do
5823         their work.
5824
5825 2003-01-02  Raymond Scholz  <ray-2003@zonix.de>
5826
5827         * deuglify.el (gnus-article-outlook-deuglify-article):
5828         Rehighlight, reapply treatments and call
5829         `gnus-article-prepare-hook'.  Suggested by Niels Olof Bouvin.
5830         (gnus-outlook-repair-attribution-block): Recognize cited
5831         attributions.  Suggested by Niklas Morberg.
5832
5833 2003-01-02  Pete Kazmier  <pete@kazmier.com>
5834
5835         * gnus-art.el (gnus-treat-predicate): Check condition first.
5836
5837 2003-01-02  Jesper Harder  <harder@ifa.au.dk>
5838
5839         * lpath.el: Add url-http-file-exists-p.
5840
5841         * gnus-group.el (gnus-group-fetch-charter): Use
5842         http://TLH.news-admin.org/charters/GROUPNAME as a fallback.
5843
5844 2003-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5845
5846         * message.el (message-draft-headers): Also generate From to get a
5847         nicer draft buffer summary.
5848
5849         * gnus-xmas.el (gnus-xmas-read-event-char): Take an optional
5850         parameter.
5851
5852         * gnus-art.el (article-wash-html): Clean up.
5853         (article-wash-html): Typo fix.
5854
5855         * gnus-msg.el (gnus-summary-mail-forward): Clean up.
5856         (gnus-summary-mail-forward): To many lists of lists.
5857
5858         * gnus-art.el (article-wash-html): Clean up.
5859
5860 2003-01-02  pete-temp  <pete-temp-12-29-2002@kazmier.com>
5861
5862         * gnus-art.el (gnus-treat-wash-html): New variable.
5863
5864 2003-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5865
5866         * message.el (message-check-news-header-syntax): Allow posting.
5867         (message-check-news-header-syntax): Fix logic for sure, this
5868         time.
5869
5870 2003-01-02  Matthieu Moy  <Matthieu.Moy@imag.fr>
5871
5872         * message.el (message-check-news-header-syntax): Check syntax of
5873         continuation headers.
5874
5875 2003-01-02  Reiner Steib  <Reiner.Steib@gmx.de>
5876
5877         * gnus-art.el (gnus-button-url-regexp,
5878         (gnus-button-mid-or-mail-regexp, gnus-button-alist,
5879         (gnus-header-button-alist): Regexps are case insensitive here.
5880
5881 2003-01-02  Simon Josefsson  <jas@extundo.com>
5882
5883         * dig.el (query-dig): Doc fix.
5884
5885 2003-01-02  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
5886
5887         * gnus-agent.el (gnus-agent-fetch-selected-article): Update whole
5888         summary buffer line, not just the download mark.
5889
5890 2003-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5891
5892         * gnus-sum.el (gnus-summary-goto-subjects): New function.
5893         (gnus-summary-insert-dormant-articles): New command and
5894         keystroke.
5895
5896         * gnus-cache.el (gnus-summary-insert-cached-articles): Use new
5897         function for mass insertion of subjects.
5898
5899         * nndraft.el (nndraft-generate-headers): Don't move point.
5900
5901         * gnus.el (nnheader): Require nnheader.
5902
5903         * nndraft.el (nndraft-request-associate-buffer): Use
5904         make-local-variable.
5905
5906 2003-01-02  Michael Shields  <shields@msrl.com>
5907
5908         * nndraft.el (nndraft-request-associate-buffer): Make
5909         write-contents-hooks buffer-local before setting it.
5910
5911 2003-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5912
5913         * gnus.el (gnus-group-parameter-value): Take an extra param.
5914         (gnus-group-fast-parameter): Let group param results be nil.
5915
5916         * gnus-art.el (gnus-article-forward-header): New function.
5917         (article-date-ut): Use it to remove continuation date headers.
5918
5919         * gnus-sum.el (gnus-summary-walk-group-buffer): Supply prompt to
5920         read-event.
5921         (gnus-summary-remove-bookmark): Clean up.
5922         (gnus-summary-set-bookmark): Clean up.
5923
5924         * gnus-util.el (gnus-read-event-char): Take an optional prompt.
5925
5926         * gnus.el (gnus-group-startup-message): Bind data-directory to
5927         the Gnus etc directory.
5928
5929 2003-01-01  Teodor Zlatanov  <tzz@lifelogs.com>
5930
5931         * spam.el (spam-summary-prepare-exit): added slots for spam- and
5932         ham-processing of articles; use the new
5933         spam-group-(spam|ham)-contents-p functions
5934         (spam-group-spam-contents-p, spam-group-ham-contents-p): new
5935         convenience functions
5936         (spam-mark-junk-as-spam-routine): use the new
5937         spam-group-spam-contents-p function
5938
5939         * gnus.el (spam-process, spam-contents, spam-process-destination):
5940         added new parameters with corresponding global variables
5941         (gnus-group-spam-exit-processor-ifile,
5942         gnus-group-spam-exit-processor-bogofilter,
5943         gnus-group-spam-exit-processor-blacklist,
5944         gnus-group-spam-exit-processor-whitelist,
5945         gnus-group-spam-exit-processor-BBDB,
5946         gnus-group-spam-classification-spam,
5947         gnus-group-spam-classification-ham): added new symbols for the
5948         spam-process and spam-contents parameters
5949
5950         * spam.el (spam-ham-marks, spam-spam-marks): changed list
5951         customization and list itself to store mark symbol rather than
5952         mark character.
5953         (spam-bogofilter-register-routine): added logic to generate mark
5954         values list from spam-ham-marks and spam-spam-marks, so (member)
5955         would work.
5956
5957 2003-01-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5958
5959         * message.el (message-cross-post-followup-to): Fix comment.
5960
5961 2003-01-01  Teodor Zlatanov  <tzz@lifelogs.com>
5962
5963         * spam.el (spam-ham-marks, spam-spam-marks): changed list
5964         customization and list itself to store mark symbol rather than
5965         mark character.
5966         (spam-bogofilter-register-routine): added logic to generate mark
5967         values list from spam-ham-marks and spam-spam-marks, so (member)
5968         would work.
5969
5970 2003-01-01  Raymond Scholz  <ray-2002@zonix.de>
5971
5972         * message.el (message-signature-insert-empty-line): New variable.
5973
5974 2002-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
5975
5976         * message.el: Renamed functions and variables: "xpost" ->
5977         "cross-post", "-fup2" -> "-followup-to".
5978         (message-cross-post-old-target, message-cross-post-default,
5979         message-cross-post-note, message-followup-to-note,
5980         message-cross-post-note-function): New variables names.
5981         (message-xpost-old-target, message-xpost-default,
5982         message-xpost-note, message-fup2-note,
5983         message-xpost-note-function): Removed variable names.
5984         (message-cross-post-followup-to-header,
5985         message-cross-post-insert-note, message-cross-post-followup-to):
5986         New function names.
5987         (message-xpost-fup2-header, message-xpost-insert-note,
5988         message-xpost-fup2): Removed function names.
5989
5990 2002-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
5991
5992         * message.el (message-send-mail): Added message-cleanup-headers to
5993         prevent newlines in headers.
5994
5995 2003-01-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5996
5997         * dns.el (dns-make-network-process): Comment.
5998
5999         * gnus-sum.el (gnus-summary-display-while-building): Default to
6000         nil.
6001
6002 2003-01-01  Wes Hardaker  <wes@hardakers.net>
6003
6004         * gnus-sum.el (gnus-summary-display-while-building): New
6005         variable.
6006
6007 2003-01-01  Raymond Scholz  <ray-2003@zonix.de>
6008
6009         * deuglify.el (gnus-outlook-rearrange-article): Kill overlays
6010         before rearranging the article.
6011
6012 2003-01-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6013
6014         * nndraft.el (nndraft-generate-headers): New function.
6015         (nndraft-request-associate-buffer): Use it to write headers on
6016         buffer save.
6017
6018         * message.el (message-generate-headers): Let the function be a
6019         lambda form.
6020         (message-draft-headers): New variable.
6021
6022         * gnus-msg.el (gnus-inews-make-draft-meta-information): New
6023         function.
6024         (gnus-setup-message): Use it.
6025
6026         * message.el (message-generate-headers-first): Doc fix.
6027         (message-setup-1): Use new function for getting which headers to
6028         generate.
6029         (message-headers-to-generate): New function.
6030
6031 2003-01-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
6032
6033         * gnus-agent.el (gnus-agent-save-alist): Make directory.
6034
6035 2002-12-31  Reiner Steib  <4uce.02.r.steib@gmx.net>
6036
6037         * gnus-sum.el (gnus-summary-limit-to-age): Make prompt string
6038         mention negatives.
6039
6040 2002-12-31  Raymond Scholz  <ray-2002@zonix.de>
6041
6042         * deuglify.el (gnus-outlook-rearrange-article): Use
6043         `transpose-regions' instead of tempering the kill-ring.
6044         (gnus-article-outlook-deuglify-article): Rehighlight article
6045         instead of a complete redisplay.
6046
6047 2002-12-31  Teodor Zlatanov  <tzz@lifelogs.com>
6048
6049         * spam.el: most defvars are defcustoms now
6050
6051         patches from Michael Shields  <shields@msrl.com>
6052
6053         * spam.el (spam-bogofilter-articles): Select the article
6054         body using gnus-summary-show-article t instead of
6055         gnus-summary-select-article; this presents the raw text
6056         without running any hooks.
6057
6058         * spam.el (spam-bogofilter-articles): Use message-remove-header
6059         to remove headers; the old way incorrectly removed just the first
6060         line of folded headers.
6061
6062 2002-12-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6063
6064         * gnus-start.el (gnus-load): Replace `ding-file' with `file'.
6065
6066 2002-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6067
6068         * gnus-start.el (gnus-load): New function.
6069         (gnus-read-newsrc-el-file): Use it.
6070
6071 2002-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6072
6073         * gnus-art.el (gnus-button-valid-fqdn-regexp): New variable.
6074         (gnus-button-handle-apropos-documentation): New function.
6075         (gnus-button-handle-ctan): New function.
6076         (gnus-button-alist): Use them.  Improve some regexps.
6077         (gnus-button-prefer-mid-or-mail): Addition to doc-string.
6078
6079 2002-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6080
6081         * message.el (message-subscribed-p): New function.
6082         (message-send-mail): Use it.
6083         * mml.el (mml-preview-insert-mft): New function.
6084         (mml-preview): Use it.
6085
6086 2002-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6087
6088         * gnus-sum.el (gnus-thread-latest-date): Protect against errors
6089         when sorting by date.
6090
6091         * gnus-art.el (gnus-article-edit-mode): New variable.
6092         (gnus-article-setup-buffer): Warn user about discarding edits.
6093
6094         * gnus-sum.el (gnus-summary-pipe-output): Clean up.
6095         (gnus-summary-pipe-output): Take a symbolic prefix to save all
6096         headers.
6097
6098         * mm-uu.el (mm-uu-configure-list): Default to (shar . disabled).
6099
6100 2002-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6101
6102         * message.el (message-completion-alist): Added "Mail-Followup-To"
6103         and "Mail-Copies-To".
6104
6105 2002-07-21  Jesper harder  <harder@ifa.au.dk>
6106
6107         * gnus-group.el: Add key bindings for
6108         gnus-group-sort-groups-by-real-name and
6109         gnus-group-sort-selected-groups-by-real-name.
6110
6111 2002-07-21  Jesper harder  <harder@ifa.au.dk>
6112
6113         * gnus.texi (Sorting Groups): Add key bindings for
6114         gnus-group-sort-groups-by-real-name and
6115         gnus-group-sort-selected-groups-by-real-name.
6116
6117 2002-12-30  Teodor Zlatanov  <tzz@lifelogs.com>
6118
6119         * spam.el (spam-use-dig): new variable for blackhole checking
6120         through dig.el
6121         (spam-check-blackholes): added dig.el checking functionality and
6122         more verbose reporting; query-dig is autoloaded from dig.el
6123         (spam-use-blackholes): disabled by default
6124         (spam-blackhole-servers): removed rbl.maps.vix.com from the
6125         blackhole servers list
6126
6127 2002-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6128
6129         * message.el (message-required-headers): New variable.
6130
6131 2002-12-30  Teodor Zlatanov  <tzz@lifelogs.com>
6132
6133         * dig.el (query-dig): new function
6134
6135 2002-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6136
6137         * flow-fill.el (fill-flowed): Don't infloop on too long fill
6138         prefixes.
6139
6140         * dns.el (query-dns): Protect against errors.
6141
6142         * gnus-msg.el (gnus-article-yanked-articles): New variable.
6143         (gnus-inews-add-send-actions): Mark all answered messages as
6144         answered.
6145
6146 2002-08-10  Jari Aalto  <jari.aalto@poboxes.com>
6147
6148         * nnmail.el (nnmail-split-it): Added tracing to
6149         `:' split rule
6150
6151 2002-08-13  Hrvoje Niksic  <hniksic@xemacs.org>
6152
6153         * mm-decode.el (mm-mailcap-command): Remove the quotes around '%s'
6154         and "%s" so we don't overquote them.
6155
6156 2002-08-13  Hrvoje Niksic  <hniksic@xemacs.org>
6157
6158         * (mm-display-external): Display the actual command that has been
6159         executed in the echo area.
6160
6161 2002-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6162
6163         * gnus-topic.el (gnus-topic-display-missing-topic): Bind entry.
6164
6165         * message.el (message-with-reply-buffer): New macro.
6166         (message-fetch-reply-field): Use it.
6167         (message-insert-wide-reply): New command and keystroke.
6168         (message-carefully-insert-headers): New function.
6169         (message-insert-to): Use new function.
6170
6171         * gnus-topic.el (gnus-topic-display-missing-topic): New function.
6172         (gnus-topic-goto-missing-group): Use it.
6173
6174         * message.el (message-required-news-headers): Removed Lines.
6175         (message-reply): Don't insert References first.
6176         (message-followup): Ditto.
6177         (message-make-references): New function.
6178         (message-followup): Set message-reply-headers before generating
6179         the buffer stuff.
6180
6181 2002-12-29  Jesper Harder  <harder@ifa.au.dk>
6182
6183         * mml.el (mml-generate-mime-1): Reverse the order of
6184         encoding/flowing.
6185
6186 2002-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6187
6188         * nnmail.el (nnmail-expiry-target-group): Mark articles as read
6189         after moving them.
6190
6191         * gnus-sum.el (gnus-summary-dummy-line-format): Update format to
6192         fit with newer standard format.
6193         (gnus-summary-make-false-root-always): New variable.
6194         (gnus-gather-threads-by-subject): Use it.
6195
6196         * message.el (message-get-reply-headers): Take an address list
6197         optional argument.
6198
6199 2002-12-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6200
6201         * gnus.el (gnus-keep-backlog): Change default to 20.
6202
6203         * gnus-agent.el (gnus-agent-check-overview-buffer): Start from
6204         start.
6205         (gnus-agent-check-overview-buffer): Remove negative article
6206         numbers.
6207
6208         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups): Doc fix.
6209         (nnmail-cache-ignore-groups): Doc fix.
6210
6211         * nnimap.el (nnimap-debug): Made into a flag and defcustomed.
6212         (nnimap-debug-buffer): New variable.
6213         (nnimap-debug): Use it.
6214
6215 2002-12-28  Lars Magne Ingebrigtsen  <kgreiner@xpediantsolutions.com>
6216
6217         * gnus.el (gnus-summary-high-uncached-face): New color scheme.
6218
6219 2002-12-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6220
6221         * gnus-agent.el (gnus-agent-check-overview-buffer): Sort lines if
6222         they aren't already sorted.
6223
6224 2002-12-28  Jesper Harder  <harder@ifa.au.dk>
6225
6226         * message.el (message-mode-menu): Add ellipses to menu items
6227         expecting user interaction.
6228         (message-mode-field-menu): do.
6229
6230 2002-12-26  Jesper Harder  <harder@ifa.au.dk>
6231
6232         * gnus-sum.el (gnus-summary-highlight-line): Don't bind `list' --
6233         it isn't used any more.
6234
6235 2002-12-22  Jesper Harder  <harder@ifa.au.dk>
6236
6237         * binhex.el (binhex-decoder-program): Fix docstring.
6238
6239 2002-12-21  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6240
6241         * mm-decode.el (mm-mailcap-command): Do not backslash-quote
6242         special chars if the mailcap file uses single quotes around %s.
6243         From Laurent Martelli <laurent@bearteam.org>.
6244
6245 2002-12-19  Paul Jarc  <prj@po.cwru.edu>
6246
6247         * gnus-int.el (gnus-request-update-info): nnchoke-r-u-i might not
6248         return the info object.
6249
6250 2002-12-18  Paul Jarc  <prj@po.cwru.edu>
6251
6252         * gnus-int.el (gnus-request-update-info): Artificially add
6253         (1 . (1- min)) to the read range, in case the backend doesn't
6254         store marks for nonexistent articles.
6255
6256 2002-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6257
6258         * binhex.el (binhex-insert-char): Eval-and-compile.
6259
6260 2002-12-17  Jesper Harder  <harder@ifa.au.dk>
6261
6262         * lpath.el: Add tool-bar-local-item-from-menu.
6263
6264         * message.el (message-tool-bar-local-item-from-menu): New function.
6265         (message-tool-bar-map): Use it.
6266
6267 2002-12-14  Jesper Harder  <harder@ifa.au.dk>
6268
6269         * gnus-uu.el (gnus-uu-digest-headers): Mention nil value in docstring.
6270
6271         * gnus-art.el (gnus-article-header-rank): Last header in
6272         gnus-sorted-header-list should have higher rank than non-members.
6273
6274 2002-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6275
6276         * gnus-agent.el (gnus-close-agent): Don't blank out the list of
6277         covered methods.
6278
6279 2002-12-12  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6280
6281         * nntp.el (nntp-with-open-group-first-pass): Do not wrap in
6282         eval-when-compile.  Suggested by Kevin Greiner.
6283
6284 2002-12-13  Kevin Greiner <kgreiner@xpediantsolutions.com>
6285
6286         * gnus-agent.el (gnus-agent-max-fetch-size): New, defcustom.
6287         (gnus-agent-fetch-headers): Initialize gnus-agent-overview-buffer
6288         even though no headers may have been fetched
6289         (gnus-agent-fetch-group-1, and perhaps others, require this
6290         behavior).
6291         (gnus-agent-fetch-group-1): Fetch articles in chucks so that the
6292         server buffer is constrained by gnus-agent-max-fetch-size.
6293         Multiple chunks in the same group may perform arbitrarily large
6294         updates.
6295
6296 2002-12-12  Kevin Greiner <kgreiner@xpediantsolutions.com>
6297
6298         * gnus-agent.el (gnus-agent-fetch-selected-article): Added call to
6299         gnus-summary-update-download-mark to update the article in the
6300         summary.
6301
6302 2002-12-11  Kevin Greiner <kgreiner@xpediantsolutions.com>
6303
6304         * gnus.el (gnus-summary-high-uncached-face,
6305         gnus-summary-normal-uncached-face, gnus-summary-low-uncached-face)
6306         New faces.
6307
6308         * gnus-agent.el (gnus-agent-downloaded-article-face): REMOVED.  I
6309         added this on 2002-11-23 but it just wasn't working out as
6310         intended.  The idea isn't entirely dead, three new faces
6311         gnus-summary-*-uncached-face are being added to gnus.el to provide
6312         the basis for an improved implementation.
6313         (gnus-agent-read-servers): Undo the change made on 2002-11-23. The
6314         proper file to open is lib/servers.
6315         (gnus-summary-set-agent-mark): Expanded documentation.  Unmarking
6316         (i.e. removing the article from gnus-newsgroup-downloadable) will
6317         now restore the article's default mark rather than simply setting
6318         no mark.
6319         (gnus-agent-get-undownloaded-list): Corrected documentation.
6320         Added code to set new summary local variable,
6321         gnus-newsgroup-agentized.  Reworked impl so that it doesn't create
6322         a temporary list.  No longer sets gnus-newsgroup-downloadable.
6323         (gnus-agent-summary-fetch-group): Keep gnus-newsgroup-undownloaded
6324         up to date.  Call new gnus-summary-update-download-mark to keep
6325         summary buffer up-to-date.
6326         (gnus-agent-fetch-selected-article): Keep
6327         gnus-newsgroup-undownloaded up to date.
6328         (gnus-agent-fetch-articles): Return list of articles that were
6329         successfully fetched.
6330         (gnus-agent-check-overview-buffer): No more thingatpt.
6331         (gnus-agent-expire): No longer deletes NOV entries of unread
6332         articles.
6333         (gnus-agent-unread-articles): New function.
6334         (gnus-agent-regenerate-group): The article number must be
6335         terminated by a tab character.  Added more messages to report
6336         repairs.  Inhibit quits while writing changes so it is now safe
6337         have to quit regeneration.  Renamed gnus-tmp-downloaded back to
6338         downloaded to 1) resolve the unbound references and 2) avoid
6339         confusing this list with the gnus-tmp-downloaded in gnus-sum.el
6340
6341         * gnus-art.el (gnus-article-prepare): The agent
6342         downloaded/undownloaded mark is no longer stored as the article's
6343         mark.
6344
6345         * gnus-salt.el (gnus-tree-highlight-node): Added uncached as
6346         gnus-summary-highlight may use it.  Added downloaded as
6347         gnus-summary-highlight was using it.
6348
6349         * gnus-sum.el (gnus-undownloaded-mark): Changed from ?@ to ?- as
6350         the download mark now follows Kai's +/- convention.
6351         (gnus-downloaded-mark): Added ?+ mark.
6352         (gnus-summary-highlight): Added rules to select
6353         gnus-summary-high-uncached-face,
6354         gnus-summary-normal-uncached-face, and
6355         gnus-summary-low-uncached-face.  Removed the
6356         gnus-agent-downloaded-article-face.
6357         (gnus-summary-line-format-alist): Implemented the download flag
6358         format (?O) as named in the manual.  This implementation displays
6359         either gnus-undownloaded-mark, gnus-downloaded-mark, or
6360         gnus-no-mark.
6361         (gnus-newsgroup-agentized): New local variable that identifies
6362         which groups are agentized.  While the agent is now on by default,
6363         you don't have to agentize every server that you use.
6364         (gnus-update-summary-mark-positions): Completed support for the
6365         download type of mark.
6366         (gnus-summary-insert-line): Added undownloaded to the parameters.
6367         (gnus-summary-prepare-threads): Set gnus-tmp-downloaded for
6368         reference by the gnus-summary-line-format-spec.
6369
6370         * nntp.el (nntp-with-open-group): This macro handles dropped or
6371         broken connections by opening a new connection and repeating the
6372         failed command.
6373         (nntp-retrieve-headers-with-xover): Some NNTP servers respond to
6374         XOVER commands preceeding the active articles with the nov entry
6375         of the first available article.  When gnus connected to such a
6376         server, the unexpected nov entry would result in duplicate lines
6377         in the agent's overview file.  This patch fixes the duplicate
6378         lines problem and improves performance by skipping over all
6379         articles IDs that preceed the first nov entry in the server's
6380         reply.
6381
6382 2002-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6383
6384         * gnus-sum.el (gnus-tmp-downloaded): New internal variable.
6385         (gnus-summary-highlight): Use it instead of `downloaded'.
6386         (gnus-summary-highlight-line): Ditto.
6387
6388         * gnus-agent.el (gnus-agent-regenerate-group): Ditto.
6389
6390 2002-12-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6391
6392         * gnus.el (gnus-variable-list): Add gnus-agent-covered-methods.
6393
6394         * gnus-agent.el (gnus-agent-check-overview-buffer): Remove debug
6395         calls.
6396
6397         * gnus-sum.el (gnus-summary-highlight-line): Don't set the
6398         downloaded variable if we're in an uncovered group.
6399
6400         * gnus-agent.el (gnus-agent-downloaded-article-face): Change the
6401         font to soemthing less noticeable.
6402         (gnus-agent-group-covered-p): New function.
6403
6404 2002-12-09  ShengHuo ZHU  <zsh@cs.rochester.edu>
6405
6406         * gnus-agent.el (gnus-agent-braid-nov): Remove corrupted lines.
6407         Because of an unknown bug, the group buffer is saved in .overview
6408         file.
6409
6410 2002-12-09  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6411
6412         * nntp.el (nntp-send-command): Braino in last commit.  Replace
6413         `and' with `or'.
6414
6415 2002-12-08  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6416
6417         * nntp.el (nntp-send-command): Assume that echo does not happen
6418         when nntp-open-connection-function is nntp-open-network-stream.
6419         Suggested by Sebastian D.B. Krause <krause@my.gnus.org>.
6420
6421 2002-12-07  ShengHuo ZHU  <zsh@cs.rochester.edu>
6422
6423         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update the parser.
6424
6425 2002-12-06  Paul Jarc  <prj@po.cwru.edu>
6426
6427         * nnmaildir.el (nnmaildir-request-group): bugfix: don't erase
6428         nntp-server-buffer if we aren't going to write to it.
6429
6430 2002-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6431         Trivial patch from Itai Zukerman <zukerman@math-hat.com>.
6432
6433         * mm-decode.el (mm-w3m-safe-url-regexp): Fix parenthesis.
6434
6435 2002-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6436
6437         * rfc2047.el (rfc2047-decode-region): Remove newlines between
6438         decoded words.
6439
6440 2002-12-03  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6441
6442         * gnus.el (fboundp): After loading mm-util, make sure it was the
6443         right one.
6444
6445 2002-11-29  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6446
6447         * gnus-art.el (gnus-inhibit-mime-unbuttonizing): Moved here from
6448         gnus-sum.  Made into a user option.
6449
6450         * gnus-sum.el (gnus-simplify-ignored-prefixes)
6451         (gnus-summary-mark-article-as-unread)
6452
6453 2002-11-29  ShengHuo ZHU  <zsh@cs.rochester.edu>
6454
6455         * time-date.el (date-to-time): Typo.
6456
6457         * parse-time.el: Typo.
6458
6459         * nnsoup.el (nnsoup-retrieve-headers): Typo.
6460
6461         * nnmail.el (nnmail-split, nnmail-process-unix-mail-format): Typos.
6462
6463         * nnimap.el:
6464         (nnimap-split-rule, nnimap-find-minmax-uid): Typos.
6465
6466         * mm-encode.el (mm-safer-encoding): Typo.
6467
6468         * messcompat.el: Typo.
6469
6470         * message.el (message-face-alist): Typo.
6471
6472         * imap.el (imap-interactive-login, imap-open): Typos.
6473
6474         * ietf-drums.el (ietf-drums-text-token, ietf-drums-qtext-token): Typos.
6475
6476         * gnus.el: Typo.
6477
6478         * gnus-win.el (gnus-configure-frame): Typo.
6479
6480         * gnus-util.el (gnus-atomic-progn-assign): Typo.
6481
6482         * gnus-topic.el (gnus-topic-sort-topics): Typo.
6483
6484         * gnus-sum.el (gnus-summary-article-number)
6485         (gnus-summary-read-group-1, gnus-summary-mark-article)
6486         (gnus-summary-fetch-faq, gnus-refer-article-methods): Typos.
6487
6488         * gnus-mule.el (gnus-mule-add-group): Typo.
6489
6490         * gnus-mlspl.el (gnus-group-split-fancy): Typo.
6491
6492         * gnus-group.el (gnus-group-fetch-faq): Typo.
6493
6494         * gnus-art.el (gnus-decode-header-methods): Typo.
6495
6496         * flow-fill.el: Typo.
6497
6498 2002-11-19  Stefan Monnier  <monnier@cs.yale.edu>
6499
6500         * binhex.el (binhex-decode-region): Don't hardcode point-min == 1.
6501
6502 2002-11-29  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6503
6504         * gnus-sum.el (gnus-simplify-ignored-prefixes)
6505         (gnus-summary-mark-article-as-unread)
6506         (gnus-mark-article-as-unread, gnus-summary-highlight-line):
6507         Reformatting to avoid long lines.
6508         (gnus-inhibit-mime-unbuttonizing): Moved to gnus-art.
6509
6510 2002-11-28  Daiki Ueno  <ueno@unixuser.org>
6511
6512         * gnus-agent.el (gnus-agent-fetch-group-1): Article numbers should
6513         be accessed through `mail-header-number'.
6514
6515 2002-11-27  Kevin Greiner  <kgreiner@xpediantsolutions.com>
6516
6517         * gnus-sum.el (gnus-summary-insert-old-articles): No longer passes
6518         compressed range to gnus-summary-insert-articles.
6519
6520 2002-11-26  Kevin Ryde <user42@zip.com.au>
6521
6522         * gnus-art.el (gnus-mime-copy-part): Look for filename
6523         parameter under content-disposition, not content-type.
6524
6525         * gnus-sum.el (gnus-summary-find-uncancelled): New function.
6526         (gnus-summary-reselect-current-group): Use it.
6527
6528 2002-11-26  ShengHuo ZHU  <zsh@cs.rochester.edu>
6529
6530         * gnus-agent.el (gnus-agent-uncached-articles): if
6531         gnus-agent-load-alist fails, return ARTICLES.
6532
6533         * nnrss.el (nnrss-group-alist): Update the link of Jabber.
6534
6535 2002-11-26  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6536
6537         * gnus-sum.el (gnus-summary-insert-old-articles): Remove
6538         superfluous function call.
6539         (gnus-summary-catchup-all, gnus-summary-catchup-all-and-exit):
6540         Add warning to docstring.
6541
6542 2002-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6543
6544         * gnus-agent.el: Autoload number-at-point instead.
6545         (gnus-agent-check-overview-buffer): No warning for deactivate-mark.
6546
6547 2002-11-26  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6548
6549         * gnus-agent.el (gnus-agent-check-overview-buffer): Explicitly
6550         require thingatpt (for number-at-point) and protect against
6551         deactivate-mark being unbound (on XEmacs).
6552
6553 2002-11-25  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6554
6555         * gnus-agent.el (gnus-agent-check-overview-buffer): Make debugger
6556         print message on entry.
6557
6558         From Kevin Greiner <kgreiner@xpediantsolutions.com>.
6559
6560         * gnus-range.el (gnus-range-difference): New function.
6561         * gnus-sum.el (gnus-summary-insert-old-articles): Use it.
6562
6563 2002-11-24  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6564
6565         * gnus-sum.el (gnus-summary-insert-old-articles): Use
6566         gnus-remove-from-range instead of gnus-range-difference which
6567         doesn't exist.
6568
6569 2002-11-23  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6570         From Kevin Greiner <kgreiner@xpediantsolutions.com>.
6571
6572         * gnus-agent.el (gnus-agent-downloaded-article-face): New face,
6573         used for showing which articles have been downloaded.
6574         (gnus-agent-article-alist): Format change.  Add documentation.
6575         (gnus-agent-summary-mode-map): New keybinding `J s' for fetching
6576         process-marked articles.
6577         (gnus-agent-summary-fetch-series): Command for `J s'.  Articles
6578         in the series are individually fetched to minimize lose of
6579         content due to an error/quit.
6580         (gnus-agent-synchronize-flags-server, gnus-agent-add-server): Use
6581         gnus-message instead of message.
6582         (gnus-agent-read-servers): Use file lib/methods instead of
6583         lib/servers.  TODO: Why?
6584         (gnus-summary-set-agent-mark): Adapt to new agent-alist format.
6585         (gnus-agent-get-undownloaded-list): Remove articles that appear to
6586         come from the agent.  This means that they are not downloaded.
6587         (gnus-agent-fetch-selected-article): Don't use history.
6588         (gnus-agent-save-history, gnus-agent-enter-history)
6589         (gnus-agent-article-in-history-p, gnus-agent-history-path):
6590         Removed function; history is not used anymore.
6591         (gnus-agent-fetch-articles): Fix handling of crossposted articles.
6592         (gnus-agent-crosspost): Started rewrite then realized that a typo
6593         in gnus-agent-fetch-articles ensures that this function is never
6594         called.  This will need to be fixed later.
6595         (gnus-agent-check-overview-buffer): Some sanity checks on the
6596         agent overview buffer.  This is a safety net used during
6597         development.
6598         (gnus-agent-flush-cache): The gnus-agent-article-alist format has
6599         changed, write a number to the file indicating this.
6600         (gnus-agent-fetch-headers): Rewrite to respect
6601         gnus-agent-consider-all-articles without relying on the
6602         `.fetched' files.  Make it fast.
6603         (gnus-agent-braid-nov): Change resulting from
6604         gnus-agent-fetch-headers change.
6605         (gnus-agent-load-alist, gnus-agent-save-alist): Don't use
6606         `.fetched' files.
6607         (gnus-agent-read-agentview): New function, used by
6608         gnus-agent-load-alist.
6609         (gnus-agent-load-fetched-headers): Remove.
6610         (gnus-agent-save-alist): Rewrite to accomodate new format.
6611         (gnus-agent-fetch-group-1): Make sure list of articles is in the
6612         same order as in gnus-newsgroup-headers.
6613         (gnus-agent-expire): Document and implement extra args ARTICLES,
6614         GROUP, FORCE.  Do not restrict usage.
6615         (gnus-agent-uncached-articles): New function.
6616         (gnus-agent-retrieve-headers): Use it.
6617         (gnus-agent-regenerate-group): No longer needs to be called from
6618         gnus-agent-regenerate.  Individual groups may be regenerated. The
6619         regeneration code now fixes duplicate, and mis-ordered, NOV entries.
6620         The article fetch dates are validated in the article alist.  The
6621         article alist is pruned of entries that do not reference existing
6622         NOV entries.  All changes are computed then applied with
6623         inhibit-quit bound to t.  As a result, it is now safe to quit out of
6624         regeneration.  The optional clean parameter has been replaced with
6625         an optional reread parameter.  Clean is no longer necessary as
6626         regeneration gets the appropriate setting from
6627         gnus-agent-consider-all-articles.  The new reread parameter will
6628         result in fetched, or all, articles being marked as unread.
6629         (gnus-agent-regenerate): Removed code to regenerate the history
6630         file as it is no longer used.
6631
6632         * gnus-start.el (gnus-make-ascending-articles-unread): New
6633         function, for efficient mass-marking.
6634
6635         * gnus-sum.el (gnus-summary-highlight): Use new face for
6636         downloaded articles.
6637         (gnus-article-mark): Prefer to indicate read/unread status over
6638         downloaded status.
6639         (gnus-summary-highlight-line-0): New function, maybe rehighlights
6640         line.
6641         (gnus-summary-highlight-line): Use new face for downloaded
6642         articles.
6643         (gnus-summary-insert-old-articles): Improved performance by
6644         replacing the initial LIST of older articles with a compressed
6645         RANGE of older articles.  Some servers appear to lie about
6646         their active range so the original list could contain millions
6647         of article numbers.  The range is not expanded into a list
6648         until the optional ALL parameter has been applied.
6649
6650 2002-11-18  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6651
6652         * gnus-agent.el (gnus-category-mode): Typo in doc string.
6653
6654 2002-11-21  Teodor Zlatanov  <tzz@lifelogs.com>
6655
6656         * spam.el:
6657         added patch from Andreas Fuchs <asf@void.at> to prevent apply errors
6658
6659         * spam.el: added `M s t' and `M s x' key mappings
6660
6661 2002-11-20  Simon Josefsson  <jas@extundo.com>
6662
6663         * gnus-sum.el (gnus-summary-morse-message): Narrow to body.
6664
6665 2002-11-19  Simon Josefsson  <jas@extundo.com>
6666
6667         * gnus-sum.el (gnus-summary-morse-message): Load
6668         morse.el (unmorse-region not autoloaded in Emacs 20 nor XEmacs).
6669         (unmorse-region): Autoload it instead.
6670
6671 2002-11-18  Simon Josefsson  <jas@extundo.com>
6672
6673         * gnus-sum.el (gnus-summary-morse-message): New function.
6674         (gnus-summary-wash-map): Bind to `W m'.
6675         (gnus-summary-make-menu-bar): Add.
6676
6677         * nnimap.el (nnimap-request-expire-articles): Compress sequence
6678         before storing \Deleted mark on expired articles.
6679
6680 2002-11-17  Shenghuo Zhu <zsh@cs.rochester.edu>
6681         Trivial patch from Markus Rost <rost@math.ohio-state.edu>
6682
6683         * gnus-sum.el (gnus-summary-goto-unread): Doc fix - escape open
6684         parens in column 0.
6685
6686 2002-11-17  Juanma Barranquero  <lektu@terra.es>
6687
6688         * nnweb.el (nnweb-google-create-mapping): Fix typo.
6689
6690         * nnlistserv.el (nnlistserv-kk-create-mapping): Likewise.
6691
6692         * gnus-nocem.el (gnus-nocem-liberal-fetch): Likewise.
6693
6694 2002-11-17  ShengHuo ZHU  <zsh@cs.rochester.edu>
6695
6696         * message.el (message-set-auto-save-file-name): Use
6697         make-directory, to avoid the dependence on gnus-util.
6698
6699 2002-11-16  Simon Josefsson  <jas@extundo.com>
6700
6701         * nnimap.el (nnimap-callback-callback-function):
6702         (nnimap-callback-buffer): Removed, these cannot be global but must
6703         be embedded into the callback.
6704         (nnimap-make-callback): New.  Embedd article number, callback and
6705         buffer in function.
6706         (nnimap-callback, nnimap-request-article-part): Update.
6707
6708 2002-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6709
6710         * mml.el (mml-preview): Bind message-this-is-mail if it is mail.
6711
6712 2002-11-13  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6713
6714         * gnus.el (gnus-summary-line-format): Document %C.
6715
6716 2002-11-11  Simon Josefsson  <jas@extundo.com>
6717
6718         * pgg.el (pgg-encrypt, pgg-decrypt, pgg-sign, pgg-verify): Display
6719         output when called interactively.
6720
6721 2002-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6722
6723         * gnus-art.el (gnus-article-edit-exit): Kill local variables.
6724
6725         * message.el (message-draft-coding-system): Improve comment; use
6726         mm-auto-save-coding-system for the default value.
6727
6728         * nndraft.el (nndraft-request-article): Revert to the state before
6729         2002-10-29; regexp-quote mail-header-separator.
6730
6731 2002-11-06  Jesper Harder  <harder@ifa.au.dk>
6732
6733         * gnus-draft.el (gnus-draft-setup): Set gnus-message-group-art to
6734         allow editing of drafts from an nnvirtual group.
6735
6736 2002-11-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6737
6738         * nndraft.el (nndraft-request-article): Replace emacs-mule with
6739         mm-auto-save-coding-system.
6740
6741         * message.el (message-draft-coding-system): Default to
6742         iso-2022-7bit.
6743
6744         * mm-util.el (mm-auto-save-coding-system): Undo last change to
6745         restore the default value to emacs-mule or escape-quoted.
6746
6747 2002-11-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6748
6749         * gnus-art.el (gnus-article-encrypt-body): Inhibit encrypting of
6750         a delayed or a queued article as well as a draft.
6751
6752         * gnus-sum.el (gnus-summary-edit-article): Inhibit editing of a
6753         delayed or a queued article in the raw format; treat a delayed
6754         article as a raw article as well as a draft.
6755         (gnus-summary-setup-default-charset): Clear gnus-newsgroup-charset
6756         for the delayed group.
6757
6758         * nndraft.el (nndraft-request-article): Ignore auto save files for
6759         a delayed or a queued article; don't bother to decode a queued
6760         article; don't bind nnmail-file-coding-system for a queued article.
6761
6762         * nnmail.el (nnmail-split-fancy-with-parent): Ignore the delayed
6763         and the queue group.
6764
6765 2002-11-04  Jesper Harder  <harder@ifa.au.dk>
6766
6767         * gnus-group.el (gnus-group-delete-group):
6768         gnus-cache-active-hashtb might be void.
6769
6770 2002-11-02  Simon Josefsson  <jas@extundo.com>
6771
6772         * pgg-gpg.el (pgg-gpg-encrypt-region): Makes PGG respect the
6773         setting of the default user ID.  From Raymond Scholz
6774         <ray-2002@zonix.de>.
6775
6776 2002-11-01  Jesper Harder  <harder@ifa.au.dk>
6777
6778         * mm-bodies.el (mm-body-encoding): Don't return 8bit for 7bit
6779         charset.
6780
6781 2002-10-31  Ted Zlatanov <tzz@lifelogs.com>
6782         From Alex Schroeder <alex@emacswiki.org>
6783         * spam-stat.el (spam-stat-process-directory): add dir to message
6784         (spam-stat-reduce-size): No longer remove words
6785         with values close to 0.5, because the default value is 0.2.
6786
6787 2002-10-31  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6788
6789         * gnus-util.el (gnus-user-date-format-alist): Clarify and correct
6790         documentation.
6791
6792 2002-10-28  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6793
6794         * gnus-agent.el (gnus-agent-fetched-headers)
6795         (gnus-agent-load-fetched-headers)
6796         (gnus-agent-save-fetched-headers): Remove variable and two
6797         functions.  Kevin Greiner's version of gnus-agent-fetch-headers
6798         works better.
6799         (gnus-agent-fetch-headers): New implementation from Kevin
6800         Greiner.  Uses gnus-agent-article-alist to store information
6801         about fetched messages which aren't on the server anymore.  The
6802         trick is to return a list of considered messages to the caller,
6803         but to only fetch those which haven't been fetched yet.
6804
6805 2002-10-30  Simon Josefsson  <jas@extundo.com>
6806
6807         * pgg-def.el (pgg-passphrase-cache-expiry): New, defcustom.
6808
6809         * pgg.el (pgg-passphrase-cache-expiry): Removed.
6810
6811 2002-10-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6812
6813         * mm-view.el (mm-w3m-local-map-property): Make it work with older
6814         versions of emacs-w3m than 1.3.3.
6815
6816         * lpath.el: Bind w3m-minor-mode-map.
6817
6818         * mm-view.el (mm-w3m-mode-command-alist)
6819         (mm-w3m-mode-dont-bind-keys, mm-w3m-mode-ignored-keys): Removed.
6820         (mm-w3m-mode-map): Undefined for Emacs21 and XEmacs.
6821         (mm-setup-w3m): Simplified.
6822         (mm-w3m-local-map-property): New function.
6823         (mm-inline-text-html-render-with-w3m): Use it.
6824
6825         * gnus-art.el (gnus-article-wash-html-with-w3m): Use
6826         mm-w3m-local-map-property.
6827
6828 2002-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6829
6830         * mm-util.el (mm-auto-save-coding-system): Default to
6831         iso-2022-7bit.
6832
6833         * nndraft.el (nndraft-request-article): Decode an article using
6834         the coding-system emacs-mule if it seems to have been saved using
6835         emacs-mule.
6836         (nndraft-request-replace-article): Use message-draft-coding-system
6837         instead of mm-auto-save-coding-system for the draft or delayed
6838         group.
6839
6840 2002-10-28  Josh  <huber@alum.wpi.edu>
6841
6842         * mml.el (mml-mode-map): Fixed keybindings for mml-secure-*
6843         functions.
6844
6845 2002-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6846         From mah@everybody.org (Mark A. Hershberger).
6847
6848         * mm-url.el (mm-url-insert-file-contents): Make it return the same
6849         type values ("url" size) regardless of the values of
6850         mm-url-use-external.
6851
6852 2002-10-26  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6853
6854         * nnimap.el (nnimap-request-article-part): Try harder to show
6855         group name in debugging message.
6856
6857 2002-10-25  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6858
6859         * gnus-agent.el (gnus-agent-save-fetched-headers): Create
6860         directory if it doesn't exist.
6861         (gnus-agent-fetch-headers): Remove old cruft that tried to
6862         abstain from downloading articles more than once if
6863         gnus-agent-consider-all-articles was true.  This is now done
6864         properly via the .fetched files.
6865
6866 2002-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6867
6868         * nndraft.el (nndraft-request-article): Treat delayed articles
6869         like drafts.
6870
6871 2002-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6872
6873         * gnus-agent.el (gnus-agent-load-alist): Fix parenthesis.
6874
6875 2002-10-24  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6876
6877         * gnus-agent.el (gnus-agent-save-alist, gnus-agent-load-alist):
6878         Remove unused optional arg DIR and corresponding code.
6879
6880         * nnimap.el (nnimap-request-article-part): Include group name in
6881         debugging output.
6882
6883 2002-10-24  Paul Jarc  <prj@po.cwru.edu>
6884
6885         * gnus-agent.el (gnus-agent-fetch-headers): Add some comments.
6886
6887 2002-10-23  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
6888
6889         * gnus-agent.el (gnus-agent-fetched-headers): New variable,
6890         contains range of headers that have been fetched by the agent
6891         already.  Compare gnus-agent-article-alist.
6892         (gnus-agent-file-header-cache): Like
6893         gnus-agent-file-loading-cache, but for gnus-agent-fetched-headers.
6894         (gnus-agent-fetch-headers): Improve comment.  Revert to old
6895         seen/recent logic.
6896         Remember which headers have been fetched before and don't fetch
6897         them again the next time round.
6898         (gnus-agent-load-fetched-headers)
6899         (gnus-agent-save-fetched-headers): New functions, for remembering
6900         which headers have been fetched before.
6901
6902 2002-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6903
6904         * lpath.el: Remove useless bindings.
6905
6906 2002-10-22  Jesper Harder  <harder@ifa.au.dk>
6907
6908         * gnus-sum.el (gnus-summary-execute-command): Disable visual
6909         features while searching.
6910
6911 2002-10-22  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6912
6913         * pgg.el (pgg-snarf-keys): Do not refer unbinded local variables.
6914
6915 2002-10-22  Simon Josefsson  <jas@extundo.com>
6916
6917         * pgg.el (pgg-encrypt, pgg-decrypt, pgg-sign, pgg-verify)
6918         (pgg-snarf-keys): Add.
6919
6920 2002-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6921
6922         * lpath.el: Fbind bbdb-records.
6923
6924         * spam.el: Don't autoload bbdb-records.
6925
6926 2002-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6927
6928         * spam.el: Set autoload for bbdb-records after loading bbdb-com to
6929         prevent inf-loop.
6930
6931 2002-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6932
6933         * nnslashdot.el: Removed some test lines.
6934         More test.
6935
6936 2002-10-21  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6937
6938         * gnus-agent.el (gnus-agent-fetch-headers): Remove articles that
6939         are known to be downloaded already.
6940
6941 2002-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6942
6943         * mm-view.el (mm-text-html-renderer-alist): Add w3m-standalone.
6944         (mm-text-html-washer-alist): Ditto.
6945
6946 2002-10-19  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6947
6948         * nnheader.el (nnheader-remove-body): Fix an error of detecting
6949         boundary between headers and body.
6950         * nnml.el (nnml-parse-head): Ditto.
6951
6952 2002-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6953
6954         * nnslashdot.el (nnslashdot-generate-active): Ignore any bogus
6955         entries.
6956
6957         * gnus-group.el (gnus-fetch-group): Allow an optional
6958         specification of the articles to select.
6959
6960         * gnus-srvr.el (gnus-server-prepare): Removed superfluous cdr.
6961
6962 2002-10-20  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6963
6964         * gnus-agent.el (gnus-agent-fetch-group-1): After fetching
6965         headers from the group, update variable `articles' to contain
6966         only those numbers where headers exist.  (When fetching all
6967         articles in a group, Gnus creates lots of numbers where there is
6968         no articles.)
6969
6970 2002-10-20  Steve Youngs  <youngs@xemacs.org>
6971
6972         * pgg-parse.el (pgg-parse-public-key-algorithm-alist): XEmacs
6973         doesn't have the 'alist custom type, use cons cells instead.
6974         (pgg-parse-symmetric-key-algorithm-alist): Ditto.
6975         (pgg-parse-hash-algorithm-alist): Ditto.
6976         (pgg-parse-compression-algorithm-alist): Ditto.
6977         (pgg-parse-signature-type-alist): Ditto.
6978
6979         * pgg-gpg.el (pgg-gpg-extra-args): Fix custom mismatch.
6980
6981         * pgg-pgp5.el (pgg-pgp5-extra-args): Ditto.
6982
6983         * pgg-pgp.el (pgg-pgp-extra-args): Ditto.
6984
6985 2002-10-19  Simon Josefsson  <jas@extundo.com>
6986
6987         * nnimap.el (nnimap-open-server): Check imap-state in IMAP server
6988         buffer.
6989
6990 2002-10-18  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6991
6992         * gnus-spec.el (gnus-make-format-preserve-properties)
6993         (gnus-xmas-format, gnus-parse-simple-format): Preserve text
6994         properties also on XEmacs.  `gnus-xmas-format' is like format but
6995         preserves text properties on XEmacs (though it only understands
6996         simple format specs).  The variable
6997         `gnus-make-format-preserve-properties' controls whether the
6998         function is used, and is checked in `gnus-parse-simple-format'.
6999         Patch by Paul Moore <gustav@morpheus.demon.co.uk>.
7000
7001         * gnus-agent.el (gnus-agent-fetch-articles): More debugging
7002         output.
7003         (gnus-agent-consider-all-articles): New variable.
7004         (gnus-agent-get-undownloaded-list): Comment that marks todo item.
7005         (gnus-agent-fetch-headers): Depending on
7006         gnus-agent-consider-all-articles, maybe get all articles.
7007         (gnus-category-predicate-alist, gnus-agent-read-p): New predicate
7008         `read'.
7009         (gnus-predicate-imples-unread): New function.
7010         (gnus-agent-fetch-headers): Optimize to call
7011         gnus-list-of-unread-articles if that is sufficient.
7012         Check unseen and recent instead of seen and recent.
7013         (gnus-agent-fetch-headers): Abstain from calling
7014         gnus-list-range-intersection if range (a . b) would have (> a b).
7015
7016 2002-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7017
7018         * message.el (message-send-mail): Make it possible to perform
7019         edebug-defun.
7020
7021 2002-10-18  Simon Josefsson  <jas@extundo.com>
7022
7023         * gnus-art.el (gnus-button-man-handler): Change default to
7024         `manual-entry' (defined in both emacsen).
7025         (gnus-button-man-handler): Remove emacsen difference and use
7026         `manual-entry'.
7027
7028 2002-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7029
7030         * spam.el: Wrap autoload settings for bbdb-records,
7031         executable-find and ifile-spam-filter with eval-and-compile.
7032         (spam-display-buffer-contents): Remove.
7033         (spam-bogofilter-score): Merge spam-display-buffer-contents.
7034
7035 2002-10-17  Ted Zlatanov  <tzz@lifelogs.com>
7036
7037         * spam.el (spam-display-buffer-contents): New function.
7038         (spam-bogofilter-score): use spam-display-buffer-contents, patch
7039         from Katsumi Yamaoka <yamaoka@jpl.org>.
7040
7041 2002-10-17  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
7042
7043         * nnheader.el (nnheader-parse-naked-head): New function.
7044         (nnheader-parse-head): Use the above function, in order to handle
7045         continuation lines properly.
7046         (nnheader-remove-body): New function.
7047         (nnheader-remove-cr-followed-by-lf): New function.
7048         (nnheader-ms-strip-cr): Use the above function.
7049
7050         * gnus-agent.el (gnus-agent-regenerate-group): Call
7051         `nnheader-remove-body'; use `nnheader-parse-naked-head' instead of
7052         `nnheader-parse-head'.
7053         * gnus-cache.el (gnus-cache-possibly-enter-article): Ditto.
7054
7055         * gnus-msg.el (gnus-inews-yank-articles): Do not unfold
7056         continuation lines by itself; call `nnheader-parse-naked-head'
7057         instead of `nnheader-parse-head'.
7058         * nndiary.el (nndiary-parse-head): Ditto.
7059         * nnfolder.el (nnfolder-parse-head): Ditto.
7060         * nnimap.el (nnimap-retrieve-headers-progress): Ditto.
7061         * nnmaildir.el (nnmaildir--update-nov): Ditto.
7062         * nnml.el (nnml-parse-head): Ditto.
7063
7064 2002-10-17  Steve Youngs  <youngs@xemacs.org>
7065
7066         * gnus-art.el (gnus-button-man-handler): Add 'manual-entry' for
7067         XEmacs, default to it if featurep 'xemacs.
7068
7069 2002-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7070
7071         * spam-stat.el: Check for the existence of hash functions instead
7072         of the Emacs version to decide whether to load cl.  Suggested by
7073         Kai Gro\e,A_\e(Bjohann.
7074
7075 2002-10-15  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7076
7077         * gnus-agent.el (gnus-agent-fetch-selected-article): Open history
7078         if it isn't open yet.
7079
7080 2002-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7081
7082         * gnus-group.el: Require mm-url only when compiling.
7083         (gnus-group-fetch-charter): Require mm-url.
7084
7085         * spam-stat.el: Require cl for the functions gethash,
7086         hash-table-count, make-hash-table and mapc for Emacs 20.
7087         (puthash): Alias to cl-puthash for Emacs 20.
7088         (with-syntax-table): New macro for Emacs 20.
7089
7090 2002-10-12  Jesper Harder  <harder@ifa.au.dk>
7091
7092         * gnus-spec.el (gnus-pad-form): Use gnus-string-width-function.
7093
7094 2002-10-11  Ted Zlatanov <tzz@lifelogs.com>
7095
7096         * spam.el (spam-check-ifile): added ifile as a spam checking
7097         backend, and spam-use-ifle as the variable to toggle that check.
7098
7099 2002-10-12  Simon Josefsson  <jas@extundo.com>
7100
7101         * message.el (message-beginning-of-line): New variable.
7102         (message-beginning-of-line): Use it.
7103
7104 2002-10-11  Ted Zlatanov <tzz@lifelogs.com>
7105
7106         * spam.el: more compilation fixes for BBDB
7107
7108         * spam-stat.el added code from Alex Schroeder <alex@gnu.org>
7109         (spam-stat-reduce-size): Interactive.
7110         (spam-stat-reset): New function.
7111         (spam-stat-save): Interactive.
7112
7113 2002-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7114
7115         * gnus.el: Autoload gnus-delay-initialize.
7116
7117         * message.el: Autoload gnus-delay-article.
7118
7119 2002-10-11  Jesper Harder  <harder@ifa.au.dk>
7120
7121         * gnus-spec.el (gnus-balloon-face-function): Use the help-echo
7122         text property in Emacs.
7123
7124 2002-10-11  Simon Josefsson  <jas@extundo.com>
7125
7126         * mml2015.el (mml2015-pgg-decrypt, mml2015-pgg-clear-decrypt)
7127         (mml2015-pgg-verify, mml2015-pgg-clear-verify): Remove CR.
7128
7129         * mml1991.el (mml1991-pgg-sign): Remove CR.
7130
7131 2002-10-10  Simon Josefsson  <jas@extundo.com>
7132
7133         * mml2015.el (mml2015-pgg-decrypt): Set gnus details even when
7134         decrypt failed.
7135         (mml2015-trust-boundaries-alist): Removed.
7136         (mml2015-gpg-extract-signature-details): Don't use it.
7137         (mml2015-unabbrev-trust-alist): New.
7138         (mml2015-gpg-extract-signature-details): Use it.
7139
7140 2002-10-10  Ted Zlatanov <tzz@lifelogs.com>
7141
7142         * spam.el: compilation fixes, spam-check-bbdb function is nil if no
7143         BBDB installed
7144
7145         * spam-stat.el: added code from Alex Schroeder <alex@gnu.org> to do
7146         statistical analysis of spam in Lisp only
7147
7148 2002-10-10  Simon Josefsson  <jas@extundo.com>
7149
7150         * nnimap.el (nnimap-open-server): Re-open server if it isn't in
7151         auth, selected or examine state.
7152
7153         * pgg-gpg.el (pgg-gpg-verify-region): Filter out stuff into output
7154         buffer and error buffer depending on type of information.
7155
7156         * mml2015.el (mml2015-gpg-extract-signature-details): Parse
7157         --status-fd stuff even if gpg.el is not used (revert earlier
7158         change).
7159         (mml2015-pgg-{clear-,}verify): Store both output and errors as
7160         gnus details.
7161         (mml2015-pgg-{clear-,}verify): Extract signature info from errors
7162         buffer.
7163
7164         * pgg.el (pgg-verify-region): Use it.
7165
7166         * pgg-def.el (pgg-query-keyserver): New variable.
7167
7168         * pgg.el (pgg-decrypt-region): Bind pgg-default-user-id to
7169         key-identifier in packet.  Is this a good idea?
7170
7171         * mml.el (mml-mode-map): Add security commands that operates on
7172         MIME parts.
7173         (mml-menu): And menu items for them.
7174
7175         * mml1991.el (mml1991-pgg-encrypt): Remove headers.
7176
7177         * mml.el (mml-parse-1): Support sender in #secure tags.
7178
7179         * mml1991.el (mml1991-pgg-sign): Only use message-sender if it is
7180         defined.
7181
7182         * mml-sec.el (mml-smime-encrypt-buffer): Warn about combined signing.
7183         (mml-pgp-encrypt-buffer): Support combined signing.
7184
7185         * mml1991.el (mml1991-mailcrypt-encrypt): Support combined signing.
7186         (mml1991-gpg-encrypt): Ditto.
7187         (mml1991-pgg-encrypt): Ditto.
7188         (mml1991-encrypt): Pass sign parameter.
7189
7190         * mml-sec.el (mml-signencrypt-style-alist): Defcustom.
7191         (mml-signencrypt-style): Mention the variable.
7192
7193 2002-10-09  Simon Josefsson  <jas@extundo.com>
7194
7195         * mml1991.el (mml1991-pgg-sign): Bind pgg-default-user-id, not
7196         pgg-gpg-user-id.
7197
7198         * pgg.el (pgg-insert-url-with-w3): Ignore errors.
7199         (pgg-fetch-key-function): Nil if w3 is not installed.
7200
7201 2002-10-08  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7202
7203         * gnus-agent.el (gnus-agent-fetch-selected-article): Bind
7204         gnus-agent-current-history.
7205
7206 2002-10-06  Simon Josefsson  <jas@extundo.com>
7207
7208         * imap.el (imap-parse-status): Don't use read to read token.
7209
7210 2002-10-05  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7211
7212         * gnus-agent.el (gnus-agent-fetch-selected-article): Do nothing
7213         for methods not covered by the agent, and when unplugged.
7214
7215 2002-10-05  Simon Josefsson  <jas@extundo.com>
7216
7217         * pgg-gpg.el (pgg-gpg-encrypt-region): Query passphrase when
7218         signing.
7219
7220         * gnus-agent.el (gnus-agent-read-servers): If getting method from
7221         a named server fails, ignore the server.
7222
7223         * mml1991.el (mml1991-pgg-sign): Do QP.
7224
7225         * pgg-gpg.el (pgg-gpg-encrypt-region): Make signencrypt really
7226         work.
7227
7228 2002-10-04  Simon Josefsson  <jas@extundo.com>
7229
7230         * pgg-gpg.el (pgg-gpg-encrypt-region): Make signencrypt work.
7231
7232         * pgg-pgp.el (pgg-pgp-verify-region): Inline
7233         binary-write-decoded-region from MEL.
7234
7235         * pgg.el (pgg-encrypt-region): Support sign.
7236
7237         * pgg-gpg.el (pgg-gpg-encrypt-region): Ditto.
7238
7239         * mml2015.el (mml2015-pgg-encrypt): Ditto.
7240
7241         * pgg.el, pgg-def.el, pgg-parse.el, pgg-gpg.el, pgg-pgp5.el,
7242         pgg-pgp6.el: Moved from ../pgg/.  Modifications compared to EMIKO
7243         branch where PGG was taken from in the ChangeLog entries below.
7244
7245 2002-10-01  Simon Josefsson  <jas@extundo.com>
7246
7247         * pgg-pgp.el: Don't require mel.  Don't use luna.
7248         (pgg-scheme-pgp-instance, pgg-make-scheme-pgp): Remove.
7249         (pgg-pgp-process-region): Use expand-file-name instead of concat.
7250         (pgg-pgp-process-region): Don't use binary-funcall.
7251
7252         * pgg-pgp5.el (pgg-pgp5-process-region): Don't use binary-funcall.
7253
7254         * pgg-gpg.el (pgg-gpg-process-region): Use expand-file-name
7255         instead of concat.
7256
7257         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7258
7259 2002-09-29  Simon Josefsson  <jas@extundo.com>
7260
7261         * pgg-parse.el (pgg-char-int, pgg-string-as-unibyte): Prevent byte
7262         compile warnings.
7263
7264         * pgg.el (pgg-decrypt-region): Don't parse packet.
7265
7266         * pgg.el, pgg-gpg.el, pgg-pgp5.el: Don't depend on luna.el.
7267
7268 2002-09-29  Daiki Ueno <ueno@unixuser.org>
7269
7270         * pgg.el: Remove dependency on calist.el.
7271
7272 2002-09-28  Simon Josefsson  <jas@extundo.com>
7273
7274         * pgg.el (pgg-temporary-file-directory): New variable.
7275         (pgg-verify-region): Don't assume set-buffer-multibyte exists.
7276
7277         * pgg-pgp5.el (pgg-pgp5-process-region, pgg-scheme-verify-region)
7278         (pgg-scheme-snarf-keys-region): Use pgg-temporary-file-directory.
7279
7280         * pgg-parse.el (pgg-char-int): Defalias.
7281         (pgg-format-key-identifier, pgg-byte-after, pgg-read-byte)
7282         (pgg-read-bytes, pgg-read-body): Use it.
7283         (pgg-decode-packets): Don't use MEL, use base64-*.
7284         (pgg-parse-armor): Don't assume set-buffer-multibyte exists.
7285         (pgg-string-as-unibyte): Defalias.
7286         (pgg-parse-armor-region): Use it.
7287
7288         * pgg-gpg.el (pgg-gpg-process-region): Use
7289         pgg-temporary-file-directory.
7290
7291         * luna.el: Don't def-edebug.
7292
7293         * pgg-pgp5.el (pgg-scheme-verify-region): Inline
7294         binary-write-decoded-region from MEL.
7295
7296         * pgg-pgp5.el, pgg-gpg.el: Don't require mel.
7297
7298         * alist.el, calist.el: Don't require product/APEL.
7299
7300         * pgg-parse.el (top-level): Remove dependency on static.el,
7301         pccl.el, mel.el.
7302         (pgg-parse-crc24, pgg-parse-crc24-string): Only define if
7303         `define-ccl-program' is boundp, instead of using broken.
7304
7305 2002-10-01  Simon Josefsson  <jas@extundo.com>
7306
7307         * message.el (message-required-mail-headers): Remove Lines:.
7308
7309 2002-10-03  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7310         From Jesper Harder.
7311
7312         * gnus-group.el (gnus-group-fetch-charter,
7313         gnus-group-fetch-control): Prompt for group if given a prefix
7314         argument.
7315         * gnus-sum.el (t): Add gnus-group-fetch-charter and
7316         gnus-group-fetch-control to summary key map and menu.
7317
7318 2002-10-03  Paul Jarc  <prj@po.cwru.edu>
7319
7320         * nnmaildir.el (nnmaildir--group-maxnum-art): fix maximum article
7321         number when there are no articles.
7322
7323 2002-10-03  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7324
7325         * gnus-agent.el (gnus-agent-summary-fetch-group): Optional prefix
7326         arg ALL means to fetch all articles, not only downloadable ones.
7327         (gnus-agent-fetch-selected-article): New function for
7328         gnus-select-article-hook or gnus-mark-article-hook.
7329
7330 2002-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7331         From Peter von der Ahe <nospam2159@daimi.au.dk>.
7332
7333         * gnus-ems.el (gnus-x-splash): Set coding-system-for-read to
7334         raw-text.
7335
7336 2002-09-30  Ted Zlatanov <tzz@lifelogs.com>
7337
7338         * spam.el: merged changes from pinard@iro.umontreal.ca (Fran\e,Ag\e(Bois
7339         Pinard).
7340         Major revamp of the code, documentation is in comments in the file
7341         for now.
7342
7343 2002-09-30  Simon Josefsson  <jas@extundo.com>
7344
7345         * mml2015.el (mml2015-pgg-clear-verify): Verifying in a unibyte
7346         buffer seem to be needed?
7347
7348 2002-09-29  Simon Josefsson  <jas@extundo.com>
7349
7350         * mml1991.el (pgg-output-buffer, pgg-errors-buffer): Prevent byte
7351         compile warnings.
7352
7353         * mml1991.el (mml1991-function-alist): Add pgg.
7354         (mml1991-pgg-sign, mml1991-pgg-encrypt): New functions.
7355         (mml1991-pgg-encrypt): Fix recipients querying.
7356
7357 2002-09-28  Simon Josefsson  <jas@extundo.com>
7358
7359         * mml2015.el (autoload): Autoload correct files.  Trivial patch
7360         from dme@dme.org.
7361         (mml2015-pgg-decrypt, mml2015-pgg-verify): Make sure either nil or
7362         handle is returned.
7363
7364 2002-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7365
7366         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
7367         Protect against non-existent of `nnimap-mailbox-info'.
7368
7369 2002-09-27  Simon Josefsson  <jas@extundo.com>
7370
7371         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news): New.
7372         (gnus-setup-news-hook): Use it.
7373         (gnus-after-getting-new-news-hook): Ditto.
7374
7375         * nnimap.el (nnimap-fixup-unread-after-getting-new-news): Remove.
7376
7377 2002-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7378         From Mats Lidell <matsl@contactor.se>.
7379
7380         * gnus-art.el (gnus-article-mode-syntax-table): Replace "-" to " ".
7381
7382 2002-09-27  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
7383
7384         * gnus-sum.el (gnus-nov-parse-line): When an error is signaled in
7385         the part to decode encoded words, use raw words instead of decoded
7386         words.
7387
7388 2002-09-26  ShengHuo ZHU  <zsh@cs.rochester.edu>
7389
7390         * nnimap.el (nnimap-update-unseen): Use gnus-gethash-safe.
7391
7392         * mm-view.el (mm-w3m-mode-ignored-keys): New variable.
7393         (mm-setup-w3m): Use it.
7394
7395 2002-09-27  Simon Josefsson  <jas@extundo.com>
7396
7397         * gnus-art.el (gnus-article-mode-syntax-table): Make M-. work in
7398         article buffers.
7399
7400         * nnimap.el (nnimap-fixup-unread-after-getting-new-news): Autoload
7401         it just in case.
7402         (nnimap-update-unseen): New function; update unseen count in
7403         `n-m-info'.
7404         (nnimap-close-group): Call it.
7405
7406         * gnus-start.el (gnus-setup-news-hook): Add n-f-u-a-g-n-n.
7407         (gnus-after-getting-new-news-hook): Ditto.
7408
7409         * nnimap.el (nnimap-retrieve-groups): Move the quick mail check
7410         message into verboselevel 9.  Change slow mail check message.
7411         (nnimap-retrieve-groups): Use prefixed names in n-mailbox-info.
7412         (nnimap-fixup-unread-after-getting-new-news): New function, to be
7413         used as a hook after getting new mail.
7414
7415 2002-09-26  Simon Josefsson  <jas@extundo.com>
7416
7417         * imap.el (imap-parse-resp-text-code): The UNSEEN value in
7418         SELECT/EXAMINE is first unseen article, not number of unseen
7419         articles.  Make them distinct by renaming the former to
7420         `first-unseen' instead of `unseen'.
7421
7422         * nnimap.el (nnimap-retrieve-groups): Get uidvalidity and unseen
7423         too.
7424         (nnimap-retrieve-groups): Don't used cached data if uidvalidity
7425         changed.
7426         (nnimap-retrieve-groups): Store uidvalidity and unseen data too.
7427
7428         * gnus-int.el (gnus-server-unopen-status): Defcustom.
7429
7430         * mml-sec.el (mml-signencrypt-style): Docstring to font-lock
7431         better.
7432
7433         * mml2015.el (mml2015-pgg-decrypt): Only add security information
7434         if dissecting resulting buffer actually had any information.
7435
7436 2002-09-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7437
7438         * gnus-group.el (gnus-group-sort-by-method): Remove `symbol-name'
7439         because the function `string<' allows symbols.
7440
7441         * gnus-sum.el (gnus-summary-make-menu-bar): Ditto.
7442
7443 2002-09-25  ShengHuo ZHU  <zsh@cs.rochester.edu>
7444
7445         * message.el (message-forward-make-body): Revert an early change
7446         because 8-bit utf-8 emails.
7447
7448 2002-09-25  Bj\e,Av\e(Brn Torkelsson  <torkel@acc.umu.se>
7449
7450         * gnus-agent.el (gnus-category-line-format): Doc fixes (mostly added
7451         links to Info)
7452         * gnus-art.el (gnus-treat-highlight-signature):
7453         * gnus-art.el (gnus-treat-buttonize):
7454         * gnus-art.el (gnus-treat-buttonize-head):
7455         * gnus-art.el (gnus-treat-emphasize):
7456         * gnus-art.el (gnus-treat-strip-cr):
7457         * gnus-art.el (gnus-treat-unsplit-urls):
7458         * gnus-art.el (gnus-treat-leading-whitespace):
7459         * gnus-art.el (gnus-treat-hide-headers):
7460         * gnus-art.el (gnus-treat-hide-boring-headers):
7461         * gnus-art.el (gnus-treat-hide-signature):
7462         * gnus-art.el (gnus-treat-fill-article):
7463         * gnus-art.el (gnus-treat-hide-citation):
7464         * gnus-art.el (gnus-treat-hide-citation-maybe):
7465         * gnus-art.el (gnus-treat-strip-list-identifiers):
7466         * gnus-art.el (gnus-treat-strip-pgp):
7467         * gnus-art.el (gnus-treat-strip-pem):
7468         * gnus-art.el (gnus-treat-strip-banner):
7469         * gnus-art.el (gnus-treat-highlight-headers):
7470         * gnus-art.el (gnus-treat-highlight-citation):
7471         * gnus-art.el (gnus-treat-date-ut):
7472         * gnus-art.el (gnus-treat-date-local):
7473         * gnus-art.el (gnus-treat-date-english):
7474         * gnus-art.el (gnus-treat-date-lapsed):
7475         * gnus-art.el (gnus-treat-date-original):
7476         * gnus-art.el (gnus-treat-date-iso8601):
7477         * gnus-art.el (gnus-treat-date-user-defined):
7478         * gnus-art.el (gnus-treat-strip-headers-in-body):
7479         * gnus-art.el (gnus-treat-strip-trailing-blank-lines):
7480         * gnus-art.el (gnus-treat-strip-leading-blank-lines):
7481         * gnus-art.el (gnus-treat-strip-multiple-blank-lines):
7482         * gnus-art.el (gnus-treat-unfold-headers):
7483         * gnus-art.el (gnus-treat-fold-headers):
7484         * gnus-art.el (gnus-treat-fold-newsgroups):
7485         * gnus-art.el (gnus-treat-overstrike):
7486         * gnus-art.el (gnus-treat-display-xface):
7487         * gnus-art.el (gnus-treat-display-smileys):
7488         * gnus-art.el (gnus-treat-from-picon):
7489         * gnus-art.el (gnus-treat-mail-picon):
7490         * gnus-art.el (gnus-treat-newsgroups-picon):
7491         * gnus-art.el (gnus-treat-body-boundary):
7492         * gnus-art.el (gnus-treat-capitalize-sentences):
7493         * gnus-art.el (gnus-treat-fill-long-lines):
7494         * gnus-art.el (gnus-treat-play-sounds):
7495         * gnus-art.el (gnus-treat-translate):
7496         * gnus-art.el (gnus-treat-x-pgp-sig):
7497         * gnus-art.el (gnus-mime-button-line-format):
7498         * gnus-art.el (gnus-button-man-level):
7499         * gnus-art.el (gnus-button-emacs-level):
7500         * gnus-cus.el (gnus-group-parameters):
7501         * gnus-gl.el (bbb-build-mid-scores-alist):
7502         * gnus-group.el (gnus-group-line-format):
7503         * gnus-mlspl.el (gnus-group-split-setup):
7504         * gnus-mlspl.el (gnus-group-split):
7505         * gnus-msg.el (gnus-mailing-list-groups):
7506         * gnus-msg.el (gnus-posting-styles):
7507         * gnus-nocem.el (gnus-nocem-issuers):
7508         * gnus-score.el (gnus-score-regexp-bad-p):
7509         * gnus-srvr.el (gnus-server-line-format):
7510         * gnus-topic.el (gnus-topic-line-format):
7511         * gnus.el (gnus-summary-line-format):
7512         * mail-source.el (mail-sources):
7513         * message.el (message-subscribed-address-file):
7514         * nnmail.el (nnmail-split-fancy):
7515
7516 2002-09-24  Evgeny Roubinchtein  <zhenya@freeshell.org>
7517
7518         * mail-source.el(mail-source-run-script): use `functionp' to test
7519         whether the argument `script' is in fact a function.
7520         (mail-sources): adjust the defcustom to allow users to specify a
7521         function or a string as the value of the `:prescript' and
7522         `:postscript' arguments of the `file' and `pop3' mail sources.
7523
7524 2002-09-25  Paul Jarc  <prj@po.cwru.edu>
7525
7526         * nnmaildir.el (nnmaildir--grp-add-art): fix minimum article
7527         number when article 1 does not exist.
7528
7529 2002-09-25  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7530
7531         * gnus-art.el (gnus-button-handle-apropos-variable): Fall back to
7532         apropos if apropos-variable does not exist.
7533         (gnus-button-guessed-mid-regexp)
7534         (gnus-button-handle-describe-prefix, gnus-button-alist): Better
7535         regexes.  From Reiner Steib.
7536         (gnus-button-handle-describe-function)
7537         (gnus-button-handle-describe-variable): Doc fix.  From Reiner Steib.
7538         (gnus-button-handle-describe-key, gnus-button-handle-apropos)
7539         (gnus-button-handle-apropos-command): Doc fix.  From Reiner Steib.
7540
7541 2002-09-25  Mark A. Hershberger  <mah@everybody.org>
7542         Trivial patch.
7543
7544         * nnrss.el (nnrss-save-server-data): Save nnrss-group-alist in
7545         the file.
7546
7547 2002-09-24  ShengHuo ZHU  <zsh@cs.rochester.edu>
7548
7549         * gnus-start.el (gnus-1): Create nndraft:queue, nndraft:drafts.
7550
7551 2002-09-24  Simon Josefsson  <jas@extundo.com>
7552
7553         * mml2015.el (top-level): Require mm-util for mm-make-temp-file.
7554         (mml2015-use): Prefer PGG if installed.
7555         (mml2015-function-alist): Add PGG wrappers.
7556         (mml2015-gpg-extract-signature-details): Check mml2015-use too.
7557         (mml2015-gpg-extract-signature-details): PGG strips "gpg: "
7558         prefix, make regexp optionally skip it.
7559         (mml2015-pgg-decrypt, mml2015-pgg-clear-decrypt)
7560         (mml2015-pgg-verify, mml2015-pgg-clear-verify, mml2015-pgg-sign)
7561         (mml2015-pgg-encrypt): New functions.
7562         (defvar, autoload): Prevent byte-compile warnings.
7563
7564 2002-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7565         From TSUCHIYA Masatoshi <tsuchiya@namazu.org>.
7566
7567         * gnus-art.el (article-strip-banner): Check for the existence of
7568         from header.
7569
7570 2002-09-23  Kai Gro\e,b_\e(Bjohann  <grossjoh@ls6.informatik.uni-dortmund.de>
7571
7572         * gnus-art.el (gnus-button-guessed-mid-regexp): Improved regexp.
7573         (gnus-button-alist): Improved regexp for
7574         gnus-button-handle-mid-or-mail (false positives), fixed
7575         gnus-button-handle-man entries.
7576         From Reiner Steib.
7577
7578 2002-09-23  Paul Jarc  <prj@po.cwru.edu>
7579         From Josh Huber.
7580
7581         * nnmaildir.el (nnmaildir--update-nov): fix wrong-type error when
7582         nnmail-extra-headers is non-nil.
7583
7584 2002-09-23  Paul Jarc  <prj@po.cwru.edu>
7585
7586         * nnmaildir.el: Store article numbers persistently.  General
7587         revision.
7588         (nnmaildir-request-expire-articles): handle 'immediate and 'never
7589         for nnmail-expiry-wait; delete instead of moving if 'force is
7590         given.
7591
7592 2002-09-23  Simon Josefsson  <jas@extundo.com>
7593         Trivial fix from beaker@iavmb.pl (Krzysztof J\e,Bj\e(Bdruczyk).
7594
7595         * smime.el (smime-sign-buffer): Get key and extra certs.
7596         (smime-get-key-with-certs-by-email): Utility function.
7597
7598 2002-09-21  ShengHuo ZHU  <zsh@cs.rochester.edu>
7599         Trivial patch from Micha Wiedenmann <mw-u1@gmx.de>
7600
7601         * gnus-soup.el (gnus-soup-add-article): Mark as read only when the
7602         article exists.
7603
7604 2002-09-20  ShengHuo ZHU  <zsh@cs.rochester.edu>
7605
7606         * gnus-sum.el (gnus-summary-next-group): Switch to the summary buffer.
7607
7608 2002-09-20  Kai Gro\e,b_\e(Bjohann  <grossjoh@ls6.informatik.uni-dortmund.de>
7609         From Reiner Steib.
7610
7611         * gnus-art.el (gnus-button-handle-custom,
7612         gnus-button-handle-mid-or-mail,
7613         gnus-button-handle-describe-{function,variable,key},
7614         gnus-button-handle-apropos{,command,variable}): New functions.
7615         (gnus-button-prefer-mid-or-mail,gnus-button-guessed-mid-regexp,
7616         gnus-button-{man,emacs,mail}-level): New variables.
7617         (gnus-button-alist): Use the above to buttonize emacs and mail
7618         related links.
7619
7620 2002-09-18  Juanma Barranquero  <lektu@terra.es>
7621
7622         * gnus-int.el (gnus-status-message): Fix spacing.
7623
7624         * imap.el (imap-continuation): Fix typos.
7625
7626 2002-09-18  ShengHuo ZHU  <zsh@cs.rochester.edu>
7627
7628         * gnus-msg.el (gnus-configure-posting-styles): Sort results.
7629
7630         * gnus-art.el (gnus-article-reply-with-original): Correct
7631         with-current-buffer scope.
7632
7633         * message.el (message-completion-alist): Add Reply-To, From, etc.
7634
7635 2002-09-18  Simon Josefsson  <jas@extundo.com>
7636
7637         * nnimap.el (nnimap-request-expire-articles): Make flag setting
7638         conditional.  From Nevin Kapur <nevin@jhu.edu>.
7639
7640 2002-09-17  Simon Josefsson  <jas@extundo.com>
7641
7642         * nnimap.el (nnimap-expiry-target): Don't search for which
7643         articles exists here.
7644         (nnimap-request-expire-articles): Do it here instead.  Only expire
7645         when articles are found.  Suggested by Nevin Kapur
7646         <nevin@jhu.edu>.
7647
7648 2002-09-17  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7649         From Reiner Steib <reiner.steib@gmx.de>.
7650
7651         * message.el (message-strip-subject-trailing-was)
7652         (message-change-subject, message-add-archive-header)
7653         (message-xpost-fup2-header, message-xpost-insert-note)
7654         (message-xpost-fup2, message-reduce-to-to-cc): New functions
7655         adopted from message-utils.el.  Add functions to the keymap, mode
7656         describtion and menu.
7657         (message-change-subject,message-xpost-fup2): Signal error if
7658         current header is empty.
7659         (message-xpost-insert-note): Changed insert position.
7660         (message-archive-note): Ensure to insert note in message body (not
7661         in head).
7662         (message-archive-header, message-archive-note)
7663         (message-xpost-default, message-xpost-note, message-fup2-note)
7664         (message-xpost-note-function): New variables adopted from
7665         message-utils.el.  Changed some doc-strings.
7666         (message-mark-insert-{begin,end}): Rename from
7667         message-{begin,end}-inserted-text-mark (message-utils.el), changed
7668         values.
7669         (message-subject-trailing-was-query)
7670         (message-subject-trailing-was-ask-regexp)
7671         (message-subject-trailing-was-regexp): New variables.
7672         (message-to-list-only): Added doc-string and menu entry.
7673
7674         * message-utils.el: Removed.  Functions are now in message.el.
7675
7676 2002-09-16  ShengHuo ZHU  <zsh@cs.rochester.edu>
7677
7678         * gnus-art.el (gnus-article-reply-with-original,
7679         gnus-article-followup-with-original): Switch to
7680         gnus-summary-buffer before reply/followup.
7681
7682 2002-09-15  John Paul Wallington  <jpw@shootybangbang.com>
7683
7684         * gnus-sum.el (gnus-summary-toggle-header): The article window may
7685         not exist. Toggle it anyway.
7686
7687 2002-09-13  ShengHuo ZHU  <zsh@cs.rochester.edu>
7688
7689         * gnus-msg.el (gnus-copy-article-buffer): Bind mail-header-separator.
7690
7691         * gnus-art.el (article-fill-long-lines): Fill-paragraph properly.
7692         Trivial patch from Urban Engberg <ue@ccieurope.com>.
7693
7694         * rfc2047.el (message-posting-charset): Defvar it.
7695         (rfc2047-charset-encoding-alist): Use B for iso-8859-7 and
7696         iso-8859-8. Fix doc.  Suggested by Dave Love <fx@gnu.org>.
7697
7698         * mail-source.el (mail-source-fetch): Hide password.
7699
7700         * gnus-sum.el (gnus-summary-next-group): Semi-exit only when needed.
7701
7702 2002-09-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7703         From John Paul Wallington <jpw@shootybangbang.com>.
7704
7705         * gnus.el (gnus-visual, gnus-meta): Fix typo.
7706
7707 2002-09-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7708
7709         * gnus-art.el (gnus-article-address-banner-alist): Doc fix.
7710
7711 2002-09-11  Simon Josefsson  <jas@extundo.com>
7712
7713         * nnimap.el (nnimap-expiry-target): Only expiry-target existing articles.
7714         (nnimap-split-rule): Doc fix.
7715         (nnimap-request-expire-articles): Cleanup code.
7716
7717 2002-09-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7718         From TSUCHIYA Masatoshi <tsuchiya@namazu.org>.
7719
7720         * gnus-art.el (gnus-article-address-banner-alist): New option.
7721         (article-strip-banner): Refer the above option to split banners of
7722         free mail servers, when no group parameter is specified.
7723
7724 2002-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7725
7726         * nntp.el (nntp-wait-for-string): Check for a process in the
7727         current buffer instead of `nntp-server-buffer'.
7728
7729 2002-09-09  Simon Josefsson  <jas@extundo.com>
7730
7731         * gnus-art.el (gnus-button-man-handler): New variable.
7732         (gnus-button-alist): Use g-b-handle-man.
7733         (gnus-button-handle-man): New, call g-b-man-handler.
7734
7735 2002-09-08  Simon Josefsson  <jas@extundo.com>
7736
7737         * gnus-art.el (gnus-button-alist): Buttonize man page links.
7738
7739 2002-09-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7740
7741         * gnus-art.el (gnus-article-dumbquotes-map): Add \230.
7742
7743 2002-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7744
7745         * gnus-srvr.el (gnus-browse-make-menu-bar): Add "d".
7746
7747         * gnus-sum.el (gnus-summary-limit-to-unseen): New command and
7748         keystroke.
7749
7750         * gnus-srvr.el (gnus-browse-describe-group): New command and
7751         keystroke.
7752
7753 2002-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7754
7755         * gnus-art.el (gnus-article-treat-body-boundary): Don't quote a
7756         value for gnus-decoration property.
7757
7758 2002-09-06  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7759
7760         * nnmail.el (nnmail-cache-fetch-group): Don't return "" (empty
7761         string) as group name in case we have a CRLF in the file.
7762
7763 2002-09-04  Jesper Harder  <harder@ifa.au.dk>
7764
7765         * rfc1843.el (rfc1843-decode-loosely): Move to mime customization
7766         group.
7767         (rfc1843-decode-hzp): do.
7768         (rfc1843-newsgroups-regexp): do.
7769
7770 2002-09-04  Simon Josefsson  <jas@extundo.com>
7771
7772         * message.el (message-canlock-generate): Make sure sha1 doesn't
7773         call external programs.
7774
7775 2002-09-03  Simon Josefsson  <jas@extundo.com>
7776
7777         * nntp.el (nntp-wait-for-string): Dont infloop if process died.
7778
7779         * gnus-agent.el (gnus-agent-batch): Add doc.
7780
7781 2002-09-03  Josh Huber  <huber@alum.wpi.edu>
7782
7783         * gnus-msg.el (gnus-summary-handle-replysign): Change the order we
7784         check for signed and encrypted parts.
7785         * mml.el (mml-parse-1): Correct small typo which preventing
7786         setting recipients in a secure tag.
7787
7788 2002-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7789
7790         * mm-util.el (mm-coding-system-priorities): Default to a list of
7791         iso-2022-jp and others for the Japanese environment.
7792
7793 2002-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7794
7795         * gnus-util.el (gnus-frame-or-window-display-name): Exclude
7796         invalid display names.
7797
7798 2002-08-30  Simon Josefsson  <jas@extundo.com>
7799
7800         * gnus-group.el (gnus-group-fetch-control): Fix typo in last
7801         commit.  From Reiner Steib <4uce.02.r.steib@gmx.net>.
7802
7803 2002-08-26  Jesper Harder  <harder@ifa.au.dk>
7804
7805         * gnus.el (gnus-group-charter-alist): New option.
7806         (gnus-group-fetch-control-use-browse-url): New option.
7807
7808         * gnus-group.el (gnus-group-fetch-charter): New function.
7809         (gnus-group-fetch-control): New function.
7810         Add them to the keymap and menu. Require mm-url.
7811
7812 2002-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7813
7814         * gnus-mlspl.el (gnus-group-split-fancy): Doc fix.
7815         From Alex Schroeder <alex@emacswiki.org>.
7816
7817 2002-08-29  Jesper Harder  <harder@ifa.au.dk>
7818
7819         * gnus-group.el (gnus-group-make-menu-bar): Add ellipses to menu
7820         items expecting user interaction.
7821
7822         * gnus-topic.el (gnus-topic-make-menu-bar): do.
7823
7824         * gnus-sum.el (gnus-summary-make-menu-bar): do.
7825
7826         * gnus-srvr.el (gnus-server-make-menu-bar): do.
7827
7828         * mml.el (mml-menu): do.
7829
7830 2002-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7831
7832         * mail-source.el (mail-source-touch-pop): New function.
7833
7834         * message.el (message-smtpmail-send-it): New function.
7835         (message-send-mail-function): Add it for a candidate.
7836
7837 2002-08-27  Simon Josefsson  <jas@extundo.com>
7838
7839         * gnus-msg.el (posting-charset-alist): Use
7840         gnus-define-group-parameter instead of defcustom.
7841         (gnus-put-message): Handle SPC in GCC.
7842         (gnus-inews-insert-gcc): Ditto.
7843         (gnus-inews-insert-archive-gcc): Ditto.
7844
7845 2002-08-26  Simon Josefsson  <jas@extundo.com>
7846
7847         * gnus-agent.el (gnus-agent-auto-agentize-methods): New variable.
7848         (gnus-agentize): Auto agentize all nntp and nnimap groups.
7849         (gnus-agent-possibly-save-gcc): Autoload.
7850         Suggested by (KOSEKI Yoshinori) <kose@meadowy.org>.
7851
7852 2002-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7853
7854         * gnus.el (gnus-other-frame-function): New user option.
7855         (gnus-other-frame): Use it; add a doc-string; make it work with
7856         the gnuclient program.
7857
7858         * gnus-util.el (gnus-frame-or-window-display-name): New function.
7859
7860         * lpath.el: Fbind `frame-parameter', `make-frame-on-display',
7861         `device-connection' and `dfw-device'.
7862
7863 2002-08-22  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7864
7865         * gnus-art.el (gnus-emphasis-alist): Strikethru had a lot of false
7866         positives, make it stricter.  From Jochen Hein (trivial change).
7867
7868 2002-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7869
7870         * gnus.el (gnus-other-frame): Trivial fix.
7871
7872 2002-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7873
7874         * gnus.el (gnus-other-frame-parameters): New user option.
7875         (gnus-other-frame-object): New variable.
7876         (gnus-other-frame): Make it search for existing Gnus frame; don't
7877         read new news; delete frame on exit.
7878
7879         * gnus-util.el (gnus-select-frame-set-input-focus): New function.
7880
7881         * lpath.el: Fbind w32-focus-frame and x-focus-frame.
7882
7883 2002-08-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7884         From \e$B>.4X\e(B \e$B5HB'\e(B (KOSEKI Yoshinori) <kose@meadowy.org>.
7885
7886         * message.el (message-set-auto-save-file-name): Add support for
7887         the Cygwin Emacs; the system-type is `cygwin'.
7888         * nnheader.el (nnheader-file-name-translation-alist): Ditto.
7889
7890 2002-08-20  ShengHuo ZHU  <zsh@cs.rochester.edu>
7891
7892         * gnus-art.el (gnus-button-url-regexp): Use POSIX regexp if possible.
7893
7894         * nnmh.el (nnmh-request-list-1): Use %.0f instead of %d to
7895         avoid arithmetic errors.
7896
7897 2002-08-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7898
7899         * gnus-art.el: Don't fbind `gnus-article-replace-with-quoted-text'.
7900
7901 2002-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7902
7903         * message.el (message-ignored-supersedes-headers): Add X-Hashcash.
7904         (message-ignored-resent-headers): Add envelope From.
7905
7906 2002-08-18  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7907
7908         * gnus.el (gnus-summary-line-format): Document %k specifier.
7909
7910 2002-08-17  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7911
7912         * gnus-sum.el (gnus-summary-line-message-size): New function.
7913         (gnus-summary-line-format-alist): Use it.
7914
7915 2002-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7916
7917         * gnus-art.el (article-make-date-line): Refer to the value for
7918         `gnus-article-time-format' in the summary buffer.
7919
7920         * message.el (message-cite-prefix-regexp): Exclude ":" and "\e,A;\e(B".
7921
7922 2002-08-14  Simon Josefsson  <jas@extundo.com>
7923
7924         * gnus-art.el (gnus-button-alist): Use ' not ` for default value
7925         quoting.
7926         (gnus-button-alist): Fix doc.
7927         (gnus-header-button-alist): Use ' not ` for default value quoting.
7928         (gnus-header-button-alist): Don't inline gnus-button-url-regexp,
7929         rationale similar to 2002-05-01 change.
7930         (gnus-article-add-buttons-to-head): Evaluate expression.
7931
7932         * gnus-sum.el (gnus-summary-make-menu-bar): Add MIME button option.
7933
7934 2002-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7935
7936         * message.el (message-font-lock-keywords): Refer to the value for
7937         `message-cite-prefix-regexp' dynamically.
7938
7939 2002-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
7940
7941         * gnus-art.el (gnus-decode-header-methods): Doc fix.
7942
7943 2002-08-12  Simon Josefsson  <jas@extundo.com>
7944
7945         * imap.el (imap-shell-open): Allow non-list `imap-shell-program'.
7946         (imap-shell-open): Skip initial junk before IMAP greeting.
7947
7948 2002-08-11  Simon Josefsson  <jas@extundo.com>
7949
7950         * message-utils.el (message-xpost-default,
7951         message-xpost-fup2-header, message-xpost-fup2): Fixed
7952         Typos.  Trivial changes from Reiner Steib
7953         <4uce.02.r.steib@gmx.net>.
7954
7955 2002-08-09  Simon Josefsson  <jas@extundo.com>
7956
7957         * message.el (message-canlock-password): Set
7958         canlock-password-for-verify to newly generated canlock-password.
7959         When Emacs is restarted, Custom makes sure this is set, but during
7960         the same session we must set it manually.
7961
7962 2002-08-07  Jesper Harder  <harder@ifa.au.dk>
7963
7964         * yenc.el: New file.
7965
7966         * mm-uu.el (mm-uu-yenc-decode-function): New variable.
7967         (mm-uu-type-alist): Add yenc.
7968         (mm-uu-yenc-filename): New function.
7969         (mm-uu-yenc-extract): New function.
7970
7971         * mm-bodies.el (mm-decode-content-transfer-encoding): Add yenc.
7972
7973 2002-08-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
7974
7975         * dgnushack.el (merge): Don't use coerce.
7976
7977 2002-05-27  Jesper Harder  <harder@ifa.au.dk>
7978
7979         * mailcap.el (mailcap-mime-data): Test window-system rather than
7980         mm-device-type.
7981         (mailcap-mime-data): Call xdvi and gv with "-safer".
7982
7983         * mm-util.el: Don't define mm-device-type.
7984
7985 2002-08-05  Simon Josefsson  <jas@extundo.com>
7986
7987         * mm-util.el (mm-coding-system-priorities): coding-system type not
7988         supported everywhere.
7989
7990 2002-08-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7991
7992         * gnus.el (gnus-version-number): Bumped version number.
7993
7994 2002-08-04 01:48:57 Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7995
7996         * gnus.el: Oort Gnus v0.07 is released.
7997
7998 2002-08-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7999
8000         * gnus-sum.el (gnus-thread-sort-functions): Doc fix.
8001         (gnus-article-sort-functions): Doc fix.
8002         (t): New keystroke.
8003         (gnus-article-sort-by-random): New function.
8004         (gnus-thread-sort-by-random): New function.
8005
8006 2002-08-02  Simon Josefsson  <jas@extundo.com>
8007
8008         * gnus-logic.el (gnus-advanced-integer): Swap arguments in
8009         funcall.  From Scott A Crosby <scrosby@cs.rice.edu>.
8010
8011 2002-07-31  Danny Siu  <dsiu@adobe.com>
8012
8013         * nnimap.el (nnimap-split-articles): do not call nnmail-fetch-field
8014         when splitting malformed messages without message-id
8015
8016 2002-07-28  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8017         From Niklas Morberg <niklas.morberg@axis.com>.
8018
8019         * nnweb.el (nnweb-type, nnweb-type-definition)
8020         (nnweb-gmane-create-mapping, nnweb-gmane-wash-article)
8021         (nnweb-gmane-search, nnweb-gmane-identity): Added gmane
8022         functionality.
8023         * nnweb.el: Removed old non-functioning search engines.
8024
8025 2002-07-27  Simon Josefsson  <jas@extundo.com>
8026
8027         * message.el (message-forward-make-body): Don't use
8028         `message-forward-ignored-headers' when doing a "raw" followup (it
8029         is important to preserve e.g. CTE).
8030
8031         * flow-fill.el (fill-flowed): Disable filladapt-mode.
8032
8033         * gnus-sieve.el (gnus-sieve-guess-rule-for-article): Don't
8034         regexp-quote, Cyrus Sieve is fixed.
8035
8036         * sieve-manage.el (sieve-manage-deletescript): New function.
8037
8038         * sieve.el (sieve-manage-mode-map): Fix down-mouse-2 and down-mouse-3.
8039         (sieve-manage-mode): Fix menubar.
8040         (sieve-activate): Change some messages.
8041         (sieve-deactivate-all): New function.
8042         (sieve-deactivate): New alias.
8043         (sieve-remove): New function.
8044         (sieve-help): Fix help.
8045         All suggested by Ned Ludd.
8046
8047 2002-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8048
8049         * mm-decode.el (mm-inline-text-html-with-images): Doc fix.
8050         (mm-w3m-safe-url-regexp): New user option.
8051
8052         * mm-view.el (mm-inline-text-html-render-with-w3m): Use
8053         `mm-w3m-safe-url-regexp' to bind `w3m-safe-url-regexp'.
8054
8055 2002-07-23  Karl Kleinpaste  <karl@charcoal.com>
8056
8057         * gnus-sum.el (gnus-summary-delete-article): Force
8058         nnmail-expiry-target to 'delete, so that absolute deletion
8059         happens when absolute deletion is requested.
8060
8061 2002-07-21  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8062         From Nevin Kapur <nevin@jhu.edu>.
8063
8064         * nnmail.el (nnmail-fancy-expiry-target): Treat nonexisting
8065         headers as empty headers.
8066
8067 2002-07-21  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8068         From Jochen Hein <jochen@jochen.org>.
8069
8070         * gnus-art.el (gnus-emphasis-alist): Add strikethrough and
8071         correct typo.
8072         (gnus-emphasis-strikethru): New face.
8073
8074 2002-07-20  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8075         From Jason Merrill <jason@redhat.com>.
8076
8077         * nnfolder.el (nnfolder-retrieve-headers): Avoid searching the
8078         entire file for each of a sequence of missing articles.
8079
8080         * gnus-salt.el (gnus-binary-display-article): Respect an existing
8081         value for gnus-view-pseudos.
8082
8083         * gnus-sum.el (gnus-summary-insert-new-articles): Count down to
8084         avoid nreverse.
8085
8086 2002-07-14  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8087         From Ted Zlatanov <teodor.zlatanov@divine.com>.
8088
8089         * gnus-sum.el (gnus-auto-expirable-marks): Remove `spam'.
8090         (gnus-summary-mode-line-format-alist): Add %h for number of
8091         spams.
8092         (gnus-newsgroup-spam-marked): New variable.
8093         (gnus-summary-local-variables): Add gnus-newsgroup-spam-marked.
8094         (gnus-article-read-p, gnus-article-mark)
8095         (gnus-set-global-variables, gnus-set-global-variables)
8096         (gnus-article-marked-p, gnus-summary-mark-article-as-read)
8097         (gnus-summary-mark-article-as-unread)
8098         (gnus-summary-mark-article-as-unread, gnus-summary-mark-article)
8099         (gnus-mark-article-as-read, gnus-mark-article-as-unread)
8100         (gnus-mark-article-as-unread, gnus-summary-catchup): Grok spam.
8101
8102 2002-07-10  Simon Josefsson  <jas@extundo.com>
8103
8104         * nnimap.el (nnimap-split-to-groups): Allow group string to be a
8105         function.  From KANEMATSU Daiji <kdaiji@bea.com>.
8106
8107 2002-07-09  Nevin Kapur  <nevin@jhu.edu>
8108
8109         * gnus-sum.el (gnus-summary-delete-article): Respect group
8110         parameters while expiring.
8111
8112 2002-07-08  Simon Josefsson  <jas@extundo.com>
8113
8114         * gnus-art.el (article-make-date-line): Fix string.  From Henrik
8115         Enberg.
8116
8117 2002-07-08  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8118
8119         * gnus-art.el (article-unsplit-urls): Only display MIME when this
8120         function is called interactively.  From Niklas Morberg.
8121
8122 2002-07-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
8123
8124         * gnus-topic.el (gnus-topic-indent, gnus-topic-unindent): Change
8125         cdaar to cdar and car.
8126
8127         * nnsoup.el (nnsoup-retrieve-headers, nnsoup-request-type)
8128         (nnsoup-read-active-file, nnsoup-article-to-area): Ditto.
8129
8130 2002-07-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8131
8132         * gnus-sum.el (gnus-summary-toggle-header): Show headers anyway;
8133         don't break a narrowed article.
8134
8135         * nntp.el (nntp-via-rlogin-command-switches): Doc fix.
8136         (nntp-open-via-rlogin-and-telnet): Ditto.
8137
8138 2002-07-02  Didier Verna  <didier@xemacs.org>
8139
8140         * nnmail.el (nnmail-split-methods): fix custom type.
8141
8142 2002-07-02  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8143
8144         * gnus-art.el (article-unsplit-urls): Keep URL buttonized after
8145         unsplitting.  From Niklas Morberg <niklas.morberg@axis.com>.
8146
8147 2002-07-01  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8148
8149         * gnus-msg.el (gnus-summary-resend-default-address): New user option.
8150         (gnus-summary-resend-message): Use it.
8151
8152 2002-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8153
8154         * nntp.el (nntp-via-rlogin-command-switches): New variable.
8155         (nntp-open-via-rlogin-and-telnet): Re-revert; use the var above.
8156
8157 2002-06-28  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8158
8159         * message.el (message-font-lock-keywords): Don't fontify
8160         headers in the message body, only in the header.
8161         (message-font-lock-make-header-matcher): New function, used by
8162         message-font-lock-keywords.
8163         From Katsumi Yamaoka <yamaoka@jpl.org>.
8164
8165 2002-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8166
8167         * nntp.el (nntp-open-via-rlogin-and-telnet): Revert last change.
8168
8169 2002-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8170
8171         * nntp.el (nntp-open-via-rlogin-and-telnet): Hide commandline args.
8172
8173 2002-06-26  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8174
8175         * message.el (message-font-lock-keywords): Revert 2002-06-22
8176         change.
8177
8178 2002-06-24  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8179
8180         * message.el (message-font-lock-keywords): Put colon in header
8181         name match.
8182
8183 2002-06-22  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8184
8185         * message.el (message-font-lock-keywords): Don't use header faces
8186         in the body.  Thanks to Stefan Monnier for the hint on the
8187         implementation.
8188
8189 2002-05-09  Miles Bader  <miles@gnu.org>
8190
8191         * gnus-cite.el (gnus-cite-blank-line-after-header): New variable.
8192         (gnus-article-hide-citation): Respect it.
8193
8194 2002-04-12  Juanma Barranquero  <lektu@terra.es>
8195
8196         * pop3.el (pop3-open-server): Fix typo.
8197
8198 2002-06-18  Josh Huber  <huber@alum.wpi.edu>
8199
8200         * gnus.el (gnus-find-subscribed-addresses): Use add-to-list
8201         instead of push to ignore duplicate to-(list|address) values.
8202         * nnmail.el (nnmail-cache-ignore-groups): New.
8203         * nnmail.el (nnmail-cache-insert): Obey nnmail-cache-ignore-groups
8204
8205 2002-06-18  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8206
8207         * gnus-delay.el (gnus-delay-send-queue): Delete the delay header
8208         before sending.  Suggested by Jan Rychter.
8209
8210 2002-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8211
8212         * dgnushack.el (remove): New compiler macro.
8213         (last, coerce, subseq): Remove compiler macros for those built-in
8214         or unused functions.
8215
8216 2002-06-17  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8217
8218         * gnus-start.el (gnus-clear-system, gnus-read-newsrc-file): Make
8219         sure to write byte-compiled versions of gnus-*-format-alist to
8220         .newsrc.eld.  From Simon Josefsson.
8221
8222 2002-06-16  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8223
8224         * gnus-agent.el (gnus-agent-read-servers)
8225         (gnus-agent-write-servers): Put server name (string like
8226         "nnchoke:frumple") in the file instead of a server specification
8227         (Lisp expression like (nnchoke "frumple" ...parameters...)).
8228         From Bj\e,Ax\e(Brn Mork <bmork@dod.no>.
8229
8230 2002-06-16  Simon Josefsson  <jas@extundo.com>
8231
8232         * gnus-cache.el (gnus-cache-remove-article): n is &optional.  From
8233         Reiner Steib <4uce.02.r.steib@gmx.net>.
8234
8235 2002-06-15  ShengHuo ZHU  <zsh@cs.rochester.edu>
8236
8237         * nnheader.el (nnheader-file-name-translation-alist): Set the
8238         default value for MS Windows systems.
8239
8240         * gnus-ems.el (nnheader-file-name-translation-alist): Removed.
8241
8242 2002-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8243
8244         * message.el (message-beginning-of-line): Keep the region active
8245         in XEmacs.  Suggested by TAKAHASHI Kaoru <kaoru@kaisei.org>.
8246
8247 2002-06-13  Josh Huber  <huber@alum.wpi.edu>
8248
8249         * gnus-msg.el (gnus-summary-followup): Use g-s-handle-replysign.
8250         * gnus-msg.el (gnus-summary-reply): Ditto.
8251         * gnus-msg.el (gnus-summary-handle-replysign): New.
8252
8253 2002-06-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8254
8255         * message.el (message-send-mail-with-sendmail): Kill errbuf even
8256         if sending failed.
8257
8258 2002-06-11  Josh Huber  <huber@alum.wpi.edu>
8259
8260         * gnus-start.el (gnus-dribble-enter): Don't call set-window-point anymore
8261         * mml2015.el (mml2015-mailcrypt-encrypt): Accept optional argument
8262         to sign while encrypting.
8263
8264 2002-06-11  Simon Josefsson  <jas@extundo.com>
8265
8266         * gnus-int.el (gnus-request-move-article): Agent expire article if
8267         successfuly moved.
8268
8269         * nnweb.el (nnweb-google-create-mapping): Honors the value of
8270         nnweb-max-hits.  From Niklas Morberg <niklas.morberg@axis.com>.
8271
8272 2002-06-10  Simon Josefsson  <jas@extundo.com>
8273
8274         * gnus-int.el (gnus-request-expire-articles): Fix last change?
8275
8276 2002-06-09  Simon Josefsson  <jas@extundo.com>
8277
8278         * gnus-sum.el (gnus-summary-delete-article): Don't agent expire here.
8279
8280         * gnus-int.el (gnus-request-expire-articles): Do it here instead.
8281
8282 2002-06-08  ShengHuo ZHU  <zsh@cs.rochester.edu>
8283
8284         * flow-fill.el (fill-flowed): Ignore errors.
8285
8286 2002-06-06  Simon Josefsson  <jas@extundo.com>
8287
8288         * message.el (message-send-mail-with-sendmail): Improve error message.
8289
8290 2002-06-06  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8291
8292         * message.el (message-interactive): Change default from nil to t.
8293         Better to be safe than to be fast.
8294
8295 2002-06-05  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8296
8297         * message.el (message-send-mail-with-sendmail): Check return value
8298         from call-process-region.
8299
8300 2002-06-04  Simon Josefsson  <jas@extundo.com>
8301
8302         * gnus-msg.el (gnus-group-mail, gnus-group-news)
8303         (gnus-group-post-news, gnus-summary-mail-other-window)
8304         (gnus-summary-news-other-window, gnus-summary-post-news): Bind
8305         gnus-article-copy to nil, thereby inhibiting the `header' posting
8306         style match to use data from last viewed article.
8307         Suggested by Hrvoje Niksic.
8308
8309 2002-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8310
8311         * spam.el (spam-point-at-eol): New alias.
8312         (spam-parse-whitelist): Use it.
8313
8314 2002-06-03  Simon Josefsson  <jas@extundo.com>
8315
8316         * nnmail.el (nnmail-mail-splitting-decodes): New variable.
8317         (nnmail-article-group): Use it.
8318
8319 2002-05-30  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8320
8321         * gnus-msg.el (gnus-inews-yank-articles): Merge split header lines
8322         so that code reading them won't be surprised.  From Jesper Harder
8323         <harder@ifa.au.dk>.
8324
8325 2002-05-29  Simon Josefsson  <jas@extundo.com>
8326
8327         * gnus-sum.el (gnus-summary-delete-article): Agent expire deleted
8328         articles.
8329
8330         * gnus.el (gnus-agent-cache): Doc fix.
8331         (gnus-agent): Change default to t.
8332
8333         * gnus-agent.el (gnus-agent-expire): Make it accept optional
8334         ARTICLES, GROUP and FORCE parameters.
8335
8336 2002-05-28  Simon Josefsson  <jas@extundo.com>
8337
8338         * gnus-group.el (gnus-group-line-format): Doc fix.
8339
8340 2002-05-28  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8341
8342         * gnus-msg.el (gnus-inews-yank-articles): Unfold headers of
8343         original article before yanking.  From Jesper Harder
8344         <harder@ifa.au.dk>.
8345
8346 2002-05-26  Simon Josefsson  <jas@extundo.com>
8347
8348         * gnus-sum.el (gnus-summary-menu-split): New function.
8349         (gnus-summary-make-menu-bar): Split charset submenu.
8350         (gnus-summary-menu-maxlen): New variable.
8351         (gnus-summary-menu-split): Use it.
8352
8353 2002-05-25  Simon Josefsson  <jas@extundo.com>
8354
8355         * mml.el (mml-preview): Generate some headers.
8356
8357         * gnus.el (gnus-large-newsgroup): Fix :type.
8358
8359         * nnimap.el (nnimap-nov-is-evil): Change default to t (because the
8360         Agent cache NOV's by default now).
8361         (nnimap-nov-is-evil): Make it default to `gnus-agent' instead.
8362
8363 2002-05-18  Jesper Harder  <harder@ifa.au.dk>
8364
8365         * gnus-sum.el (gnus-dependencies-add-header): Avoid one unecessary
8366         call to gnus-parent-id when we check for References loops.
8367         (gnus-summary-prepare-threads): Avoid simplifying every Subject
8368         twice by saving the simplified subject string in simp-subject.
8369
8370 2002-05-23  Simon Josefsson  <jas@extundo.com>
8371
8372         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Typo.  Trivial
8373         change from Benjamin Rutt <rutt+news@cis.ohio-state.edu>.
8374
8375         * nnweb.el (nnweb-type): Remove dejanewsold.  Trivial change from
8376         Niklas Morberg <niklas.morberg@axis.com>.
8377
8378 2002-05-22  Simon Josefsson  <jas@extundo.com>
8379
8380         * sieve.el (sieve-change-region): Define it before it is used.
8381
8382         * gnus-msg.el (gnus-confirm-mail-reply-to-news)
8383         (gnus-summary-reply): Ask for confirmation when replying to news.
8384         Defaults to not ask.  From Benjamin Rutt
8385         <rutt+news@cis.ohio-state.edu>.
8386
8387         * nnimap.el (nnimap-nov-is-evil): Improve doc.
8388
8389 2002-05-21  Simon Josefsson  <jas@extundo.com>
8390
8391         * sieve-mode.el (sieve-manage): Fix autoloads.
8392
8393         * sieve-manage.el (sieve-manage-cram-md5-auth): Just send the SASL
8394         name (makes it work with recent Cyrus timsieved).
8395
8396 2002-05-20  Jason  <jbaker@cs.utah.edu>
8397         Trivial patch.
8398
8399         * gnus-art.el (gnus-request-article-this-buffer): Try
8400         reconnecting if you don't get the message.
8401
8402 2002-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8403
8404         * gnus-sum.el (gnus-summary-enter-digest-group): Only get
8405         Reply-To headers from the headers.
8406
8407 2002-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8408
8409         * mm-url.el (mm-url-insert): Remove junk message.
8410
8411 2002-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8412
8413         * nnslashdot.el (nnslashdot-request-list): Parse new html.
8414         (nnslashdot-use-front-page): New variable.
8415         (nnslashdot-request-list): Use it.
8416
8417         * mm-url.el (mm-url-timeout): New variable.
8418         (mm-url-retries): Ditto.
8419         (mm-url-insert): Use it.
8420
8421 2002-05-16  Simon Josefsson  <jas@extundo.com>
8422
8423         * gnus-sum.el (gnus-simplify-all-whitespace): New function.
8424         (gnus-simplify-subject-functions): Mention g-s-a-w.
8425
8426 2002-05-15  Josh Huber  <huber@alum.wpi.edu>
8427
8428         * nnbabyl.el (nnbabyl-request-accept-article): Pass group to
8429         nnmail-cache-insert.
8430         * nndiary.el (nndiary-request-accept-article): Ditto.
8431         * nnfolder.el (nnfolder-request-accept-article): Ditto.
8432         * nnimap.el (nnimap-request-accept-article): Ditto.
8433         * nnmail.el (nnmail-process-unix-mail-format): Ditto.
8434         * nnmail.el (nnmail-check-duplication): Ditto. (from gnus-art)
8435         * nnmbox.el (nnmbox-request-accept-article): Ditto.
8436         * nnmh.el (nnmh-request-accept-article): Ditto.
8437         * nnmail.el (nnmail-cache-insert): Change group to required,
8438         removed code which tried to figure out the group.
8439
8440 2002-05-13  Josh Huber  <huber@alum.wpi.edu>
8441
8442         * mml.el (mml-generate-mime-1): Fix mml generation for signed only
8443         messages. From Hans de Graaff <hans@degraaff.org>.
8444         * nnml.el (nnml-request-accept-article): Pass in the group name to
8445         nnmail-cache-insert, since it's available.
8446
8447 2002-05-10  ShengHuo ZHU  <zsh@cs.rochester.edu>
8448
8449         * nndoc.el (nndoc-mime-digest-type-p): Set proper file-end.
8450
8451 2002-05-08  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8452         From Florian Weimer <fw@deneb.enyo.de>.
8453
8454         * gnus.el (subscribed): New group parameter.
8455         (gnus-find-subscribed-addresses): Use it.
8456
8457 2002-05-08  Josh Huber  <huber@alum.wpi.edu>
8458
8459         * mml-sec.el (mml-signencrypt-style-alist): Rename.  Also, changed
8460         the default for pgpmime to support pgp v2.
8461         * mml-sec.el (mml-signencrypt-style): New accessor function to
8462         allow users to get/set the signencrypt style more easily without
8463         frobbing the alist directly.
8464         * mml.el (mml-generate-mime-1): Use accessor function.
8465
8466 2002-05-08  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8467
8468         * gnus-art.el (gnus-article-mode-syntax-table): Specify matching
8469         parenthesis for "<" and ">".  Suggested by Andreas Schwab
8470         <schwab@suse.de>.
8471
8472 2002-05-07  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8473
8474         * nnmail.el (nnmail-cache-insert): Prefer group-art over group
8475         when intuiting the group the message is written to.  From Josh
8476         Huber <huber@alum.wpi.edu>.
8477
8478 2002-05-06  Simon Josefsson  <jas@extundo.com>
8479
8480         * gnus-topic.el (gnus-group-topic-parameters): Work when group
8481         buffer doesn't show group.  From Matt Armstrong <matt@lickey.com>.
8482
8483 2002-05-06  Josh Huber  <huber@alum.wpi.edu>
8484
8485         * mml2015.el (mml2015-gpg-encrypt): Changed name of optional
8486         argument, and fixed compiler warning. (added autoload for
8487         gpg-encrypt).
8488
8489 2002-05-04  Simon Josefsson  <jas@extundo.com>
8490
8491         * mml1991.el (mml1991-function-alist): Doc fix.
8492
8493         * mml.el (mml-preview): Bind gnus-newsrc-hashtb temporarily if it
8494         doesn't exist (for previewing messages without having Gnus
8495         started).
8496
8497         * mm-util.el (mm-coding-system-priorities): Defcustom.
8498
8499         * mm-encode.el (mm-content-transfer-encoding-defaults): Defcustom.
8500
8501 2002-05-01  Josh Huber  <huber@alum.wpi.edu>
8502
8503         * gnus-msg.el (gnus-message-replysignencrypted): enabled by
8504         default.
8505         * mml-sec.el:
8506         * mml-sec.el (mml-signencrypt-style): New.
8507         * mml-sec.el (mml-pgpmime-encrypt-buffer): Accept optional
8508         argument `sign'.
8509         * mml-sec.el (mml-secure-message-encrypt-pgp): Changed default to
8510         signencrypt.
8511         * mml-sec.el (mml-secure-message-encrypt-pgpmime): Ditto.
8512         * mml.el (mml-generate-mime-1): Changed logic so a part which is
8513         both signed & encryped is processed in one operation. (rather than
8514         two separate ops: sign, then encrypt)
8515         * mml2015.el (mml2015-gpg-extract-signature-details): Give some
8516         indication if a message is signed by an expired key.
8517         * mml2015.el (mml2015-gpg-encrypt): Accept optional argument which
8518         enables combined sign & encrypt operation. (this was always on
8519         before).
8520         * mml2015.el (mml2015-encrypt): Accept optional argument `sign'.
8521
8522 2002-05-01  Simon Josefsson  <jas@extundo.com>
8523
8524         * nnimap.el (nnimap-retrieve-groups): Use separate data for each
8525         server.
8526         (nnimap-mailbox-info): defvar instead of defvoo.
8527
8528 2002-05-01 20:09:21 Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
8529
8530         * gnus.el: Oort Gnus v0.06 is released.
8531
8532 2002-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8533
8534         * lpath.el: Bind url-package-version.
8535
8536 2002-05-01  Simon Josefsson  <jas@extundo.com>
8537
8538         * nnfolder.el (nnfolder-request-delete-group): Figure out nov/mrk
8539         filename before deleting the group itself, because the presence of
8540         a group filename decides if long filenames are used or not.
8541
8542         * gnus-art.el (gnus-button-alist): Don't inline
8543         gnus-button-url-regexp.  This makes it possible to change g-b-u-r
8544         without also modifying g-button-alist.
8545         (gnus-button-alist): Fix type to allow variable as well as regexp.
8546         (gnus-article-add-buttons): Evaluate regexp.  Strings evaluate to
8547         themselves, variables to its contents.
8548         (gnus-button-entry): Ditto.
8549
8550 2002-05-01  Simon Josefsson  <jas@extundo.com>
8551
8552         * imap.el (imap-parse-resp-text-code, imap-parse-status): Treat
8553         UIDNEXT as a string.
8554
8555         * nnimap.el (nnimap-string-lessp-numerical): New function.
8556         (nnimap-retrieve-groups): Compare UIDNEXT as strings instead of
8557         integers.
8558
8559 2002-04-29  Simon Josefsson  <jas@extundo.com>
8560
8561         * nnmail.el (nnmail-cache-insert): Accept optional group
8562         parameter.
8563
8564         * nnimap.el (nnimap-retrieve-groups): Don't send STATUS when
8565         n-r-g-a is disabled.
8566
8567 2002-04-29  Simon Josefsson  <jas@extundo.com>
8568
8569         * nnimap.el (nnimap-split-fancy): Fix doc.
8570         (nnimap-split-fancy): Fix doc.
8571
8572         * nnimap.el (nnimap-retrieve-groups-asynchronous): New variable.
8573         (nnimap-mailbox-info): New internal variable.
8574         (nnimap-retrieve-groups): Implement faster new mail check.
8575
8576         * nnimap.el (nnimap-split-articles): Support
8577         nnmail-cache-accepted-message-ids.
8578         (nnimap-request-accept-article): Ditto.
8579
8580         * imap.el (imap-mailbox-status-asynch): New command.
8581
8582 2002-04-29  Nevin Kapur  <nevin@jhu.edu>
8583
8584         * gnus.el (gnus-find-subscribed-addresses): Return nil when there
8585         are no subscribed mail groups.
8586         - Strip quoted names when comparing addresses
8587
8588 2002-04-28  Jesper Harder  <harder@ifa.au.dk>
8589
8590         * mm-decode.el (mm-text-html-renderer): Change customize type to
8591         const.
8592
8593         * gnus-msg.el (gnus-discouraged-post-methods): Fix typo.
8594         (gnus-debug-exclude-variables): do.
8595
8596 2002-04-27  ShengHuo ZHU  <zsh@cs.rochester.edu>
8597
8598         * gnus-msg.el (gnus-article-mail): Use gnus-msg-mail instead.
8599         Trivial change from Karl Pfl\e,Ad\e(Bsterer <sigurd@12move.de>.
8600
8601 2002-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
8602
8603         * dns.el (dns-make-network-process): New macro.
8604         (query-dns): Use it.
8605
8606 2002-04-27  ShengHuo ZHU  <zsh@cs.rochester.edu>
8607
8608         * gnus-msg.el (gnus-summary-reply): Remove unbound variable
8609         article-buffer.
8610
8611         * mm-url.el (mm-url-package-name): New variable.
8612         (mm-url-package-version): New variable.
8613         (mm-url-insert-file-contents): Bind url-package-name and
8614         url-package-version here.
8615         * nnrss.el (nnrss-insert-w3): Move the bindings.
8616
8617         * nnrss.el (nnrss-insert-w3): Bind url-package-name and
8618         url-package-version. Trivial change from Andrew J Cosgriff
8619         <ajc@polydistortion.net>
8620
8621         * mm-decode.el (mm-save-part): Fill in file name when GUI saving
8622         attachments. Trivial change from Peter 'Luna' Runestig
8623         <peter@runestig.com>.
8624
8625 2002-04-19  Jesper Harder  <harder@ifa.au.dk>
8626
8627         * nnkiboze.el (nnkiboze-request-scan): Call
8628         nnkiboze-possibly-change-group.
8629         (nnkiboze-generate-group): Use mm-with-unibyte to avoid encoding
8630         problems.
8631         (nnkiboze-generate-group): Set newsrc to the *highest* article
8632         number kibozed, not the lowest.
8633
8634 2002-04-15  Jesper Harder  <harder@ifa.au.dk>
8635
8636         * gnus-art.el (article-unsplit-urls): Allow trailing SPC.
8637
8638 2002-04-24  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8639         From Dan Christensen <jdc+news@uwo.ca>.
8640
8641         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
8642         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
8643         Recognize math postings.  Extract Date (now ignores "(15kb)").
8644         Extract email address using gnus-extract-address-components
8645         instead of just taking the first word.  Create Date and From
8646         headers for message which are missing these headers.  Get rid
8647         of spurious \\ lines (purely cosmetic).  Extend body-end and
8648         file-end regexps, to exclude more garbage from the message.
8649         Make URL rephrasing regexp more flexible, to match current
8650         format.
8651
8652 2002-04-23  Simon Josefsson  <jas@extundo.com>
8653
8654         * netrc.el: New file, functions copied from gnus-util.el by Ted
8655         Zlatanov <tzz@lifelogs.com>.
8656
8657         * gnus-util.el: Require netrc.
8658         (gnus-netrc-get, gnus-netrc-machine, gnus-parse-netrc): Aliased to
8659         new code in netrc.el.
8660
8661 2002-04-23  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8662
8663         * gnus-msg.el (gnus-summary-resend-message-edit): Remove
8664         message-ignored-resent-headers, too.  From Matthieu Moy
8665         <Matthieu.Moy@imag.fr>.
8666
8667 2002-04-22  Bj\e,Av\e(Brn Torkelsson  <torkel@acc.umu.se>
8668
8669         * gnus-srvr.el (gnus-server-browse-in-group-buffer): it is a
8670         boolean not a string
8671         * gnus-group.el (gnus-group-line-format): add description of %C
8672         * gnus-group.el (gnus-group-line-format-alist): add gnus-tmp-comment
8673           as %C
8674         * gnus-group.el (gnus-group-insert-group-line): add gnus-tmp-comment
8675
8676 2002-04-22  Paul Jarc  <prj@po.cwru.edu>
8677
8678         * nnmaildir.el (nnmaildir-request-scan): typo: set
8679         nnmaildir-get-new-mail, not nnmaildir-new-mail.  Don't call
8680         nnmail-get-new-mail for 'find-new-groups.
8681
8682 2002-04-21  Paul Jarc  <prj@po.cwru.edu>
8683
8684         * nnmaildir.el (nnmaildir-request-update-info,
8685         nnmaildir-request-group, nnmaildir-retrieve-groups): remove
8686         unnecessary calls to nnmaildir-request-scan.
8687
8688 2002-04-20  Josh Huber  <huber@alum.wpi.edu>
8689
8690         * gnus-msg.el:
8691         * gnus-msg.el (gnus-message-replysign): New.
8692         * gnus-msg.el (gnus-message-replyencrypt): New.
8693         * gnus-msg.el (gnus-message-replysignencrypted): New.
8694         * gnus-msg.el (gnus-summary-reply): Use the three new variables
8695         (above) to automatically encrypt/sign to encrypted/signed
8696         messages.
8697         * message.el:
8698         * message.el (message-mode-map): Add keybinding for
8699         `message-to-list-only'
8700         * message.el (message-mode): Add description for
8701         `message-to-list-only'
8702         * message.el (message-to-list-only): New.
8703         * message.el (message-make-mft): Changed to use the cl loop macro,
8704         and added optional flag to return only the matched list. (for use
8705         in new message-to-list-only function)
8706
8707 2002-04-20  Josh Huber  <huber@alum.wpi.edu>
8708
8709         * gnus-msg.el:
8710         * gnus-msg.el (gnus-message-replysign):
8711         * gnus-msg.el (gnus-replysign): New.
8712         * gnus-msg.el (gnus-replyencrypt): New.
8713         * gnus-msg.el (gnus-replysignencrypted): New.
8714         * gnus-msg.el (gnus-summary-reply):
8715         * message.el:
8716         * message.el (message-mode-map):
8717         * message.el (message-mode):
8718         * message.el (message-to-list-only): New.
8719         * message.el (message-make-mft):
8720
8721 2002-04-19  ShengHuo ZHU  <zsh@cs.rochester.edu>
8722
8723         * gnus-win.el (gnus-configure-windows-hook): Fix typo.
8724
8725 2002-04-18  Josh Huber  <huber@alum.wpi.edu>
8726
8727         * message.el (message-gen-unsubscribed-mft): accept a prefix
8728         argument so CC can be included with C-u C-c C-f C-a
8729
8730 2002-04-17  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8731         From Ted Zlatanov <teodor.zlatanov@divine.com>.
8732
8733         * spam.el (spam-whitelist, spam-blacklist, spam-enter-whitelist):
8734         Improve docstring.
8735         (spam-enter-blacklist): New command.
8736
8737         * gnus-sum.el (gnus-spam-mark): New mark.
8738         (gnus-auto-expirable-marks): Add gnus-spam-mark.
8739         (gnus-summary-make-tool-bar): Correct conditional.
8740         (gnus-summary-limit-to-unread): Add gnus-spam-mark.
8741         (gnus-summary-mark-as-spam): New command.
8742
8743 2002-04-13  Josh Huber  <huber@alum.wpi.edu>
8744
8745         * mml-sec.el (mml-secure-message): changed to support arbritrary
8746         modes.
8747         * mml-sec.el (mml-secure-message-encrypt-(smime|pgp|pgpmime)):
8748         changed to support "signencrypt" mode.
8749         * mml.el (mml-parse-1): changed to support different secure modes
8750         more easily. (for signencrypt)
8751
8752 2002-04-11  Stefan Monnier  <monnier@cs.yale.edu>
8753
8754         * gnus-sum.el (gnus-update-summary-mark-positions)
8755         (gnus-summary-toggle-header):
8756         * gnus-uu.el (gnus-uu-binhex-article, gnus-uu-reginize-string)
8757         (gnus-uu-expand-numbers, gnus-uu-post-make-mime)
8758         (gnus-uu-post-encoded):
8759         * nnfolder.el (nnfolder-possibly-change-group):
8760         * nnimap.el (nnimap-retrieve-headers):
8761         * nnmbox.el (nnmbox-create-mbox): Don't assume point-min == 1.
8762
8763 2002-04-08  Stefan Monnier  <monnier@cs.yale.edu>
8764
8765         * nnml.el (nnml-save-nov, nnml-generate-nov-file):
8766         * pop3.el (pop3-md5): Don't hardcode point-min == 1.
8767
8768 2002-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8769
8770         * gnus-srvr.el (gnus-server-set-info): Clear
8771         `gnus-server-method-cache' when `gnus-server-alist' is changed.
8772         From Daiki Ueno <ueno@unixuser.org>.
8773
8774 2002-04-11  Simon Josefsson  <jas@extundo.com>
8775
8776         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Force
8777         viewing of security buttons.  Thanks to Nicolas Kowalski
8778         <Nicolas.Kowalski@imag.fr>.
8779
8780         * smime.el (smime-CA-directory): Fix doc.  Thanks to Arne
8781         J\e,Ax\e(Brgensen <arne+usenet@daimi.au.dk>.
8782         (smime-sign-buffer): Work in XEmacs.  Thanks to Nicolas Kowalski
8783         <Nicolas.Kowalski@imag.fr>.
8784         (smime-decrypt-buffer): Ditto.
8785
8786 2002-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8787
8788         * gnus-art.el (gnus-article-prepare): Place point on the emtpy
8789         header line.
8790
8791 2002-04-11  Per Abrahamsen  <abraham@dina.kvl.dk>
8792
8793         * gnus.el (gnus-refer-article-method): Change `dejanews' to `google'.
8794
8795 2002-04-08  ShengHuo ZHU  <zsh@cs.rochester.edu>
8796
8797         * gnus-sum.el (gnus-summary-delete-marked-with): Fix typo.
8798
8799 2002-04-07  ShengHuo ZHU  <zsh@cs.rochester.edu>
8800
8801         * mm-view.el (mm-inline-text-html-render-with-w3): Don't ignore
8802         errors when debug.
8803
8804 2002-04-07  Josh Huber  <huber@alum.wpi.edu>
8805
8806         * message.el (message-make-mft): Changed MFT code from using
8807         message-recipients (which included Bcc) to use only the To and CC
8808         headers.
8809
8810 2002-04-05  Per Abrahamsen  <abraham@dina.kvl.dk>
8811
8812         * gnus-art.el (gnus-treat-from-picon): Add to gnus-picon group and
8813         add link.
8814         (gnus-treat-mail-picon): Ditto.
8815         (gnus-treat-newsgroups-picon): Ditto.
8816         (gnus-picon-databases): Fix custom type.
8817         (gnus-picon-databases): Add link.
8818         (gnus-article-x-face-command): Add to gnus-picon group.
8819
8820 2002-04-01  Jesper Harder  <harder@ifa.au.dk>
8821
8822         * message.el (message-buffer-naming-style): Remove.
8823
8824 2002-04-02  ShengHuo ZHU  <zsh@cs.rochester.edu>
8825
8826         * gnus-group.el (gnus-group-make-tool-bar): Load tool-bar first.
8827
8828         * message.el (message-tool-bar-map): Ditto.
8829
8830         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8831
8832 2002-04-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
8833
8834         * nnwarchive.el (nnwarchive-mail-archive-article): Fix typo.
8835
8836 2002-04-01  Paul Jarc  <prj@po.cwru.edu>
8837
8838         * nnmaildir.el: fixed some buggy invocations of nnmaildir--pgname.
8839
8840 2002-03-31  Andrew Cohen  <cohen@andy.bu.edu>
8841         Trivial patch.
8842
8843         * dns.el: open-network-stream under XEmacs does udp.
8844
8845 2002-03-31  Lars Magne Ingebrigtsen  <larsi@quimbies.gnus.org>
8846
8847         * spam.el (spam-enter-whitelist): New function.
8848         (spam-parse-whitelist): Ditto.
8849         (spam-refresh-list-cache): Ditto.
8850         (spam-address-whitelisted-p): New function.
8851
8852         * dns.el (query-dns): Use TCP when make-network-process isn't
8853         available.
8854         (dns-servers): New variable.
8855         (dns-parse-resolv-conf): New function.
8856         (query-dns): Use it.
8857
8858         * spam.el: New file.
8859
8860         * dns.el (query-dns): Test.
8861
8862 2002-03-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8863
8864         * lpath.el (featurep): Bind make-network-process.
8865
8866 2002-03-31  Paul Jarc  <prj@po.cwru.edu>
8867
8868         * nnmaildir.el: Use defstruct.  Use a single copy of
8869         nnmail-extra-headers to save memory.  Store server's group name
8870         prefix instead of each group's prefixed name.
8871         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Erase
8872         nntp-server-buffer.
8873
8874 2002-03-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8875
8876         * dns.el: New file.
8877
8878 2002-03-28  Simon Josefsson  <jas@extundo.com>
8879
8880         * gnus-sum.el (gnus-summary-dummy-line-format):
8881         * gnus.el (gnus-summary-line-format): Fixing links to Info.
8882         Trivial change from Bj\e,Av\e(Brn Torkelsson <torkel@pdc.kth.se>.
8883
8884 2002-03-29  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8885
8886         * gnus-sum.el (gnus-summary-move-article)
8887         (gnus-summary-copy-article): Mention `gnus-move-split-methods' in
8888         the doc string.
8889
8890 2002-03-28  Simon Josefsson  <jas@extundo.com>
8891
8892         * mml-sec.el (mml-secure-message): Search after
8893         mail-header-separator from top of message.
8894
8895 2002-03-28  Paul Jarc  <prj@po.cwru.edu>
8896
8897         * nnmaildir.el: Cosmetic changes.
8898         (nnmaildir--with-nntp-buffer, nnmaildir--with-work-buffer,
8899         nnmaildir--with-nov-buffer, nnmaildir--with-move-buffer,
8900         nnmaildir--group-ls): New macros/functions.  Use them.
8901         (nnmaildir--unlink): Evalutate argument only once.
8902
8903 2002-03-27  Jesper Harder  <harder@ifa.au.dk>
8904
8905         * gnus-sum.el (gnus-summary-highlight): Use `eq' when comparing
8906         symbols.
8907         (gnus-summary-highlight-line): Use `gnus-point-at-bol' and
8908         `gnus-point-at-eol'.
8909
8910 2002-03-27  Paul Jarc  <prj@po.cwru.edu>
8911
8912         * nnmaildir.el (nnmaildir--subdir, nnmaildir--nov-dir,
8913         nnmaildir--marks-dir): New macros.  Use them.
8914         Use inhibit-quit for atomicity instead of in-memory journaling.
8915         (nnmaildir--edit-prep): New function.
8916         (Local Variables): Use it.
8917
8918 2002-03-26  Pavel@Janik.cz (Pavel Jan\e,Am\e(Bk)
8919
8920         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
8921
8922 2002-03-25  Simon Josefsson  <jas@extundo.com>
8923
8924         * message.el (message-mode): Fix doc.
8925
8926 2002-03-25  Simon Josefsson  <jas@extundo.com>
8927
8928         * message.el (message-subject-re-regexp): Skip Re[42]: junk.  From
8929         Matthieu Moy <Matthieu.Moy@imag.fr>.
8930
8931 2002-03-24  Jesper Harder  <harder@ifa.au.dk>
8932
8933         * mml-sec.el (mml-unsecure-message): Add docstring.
8934
8935 2002-03-23  ShengHuo ZHU  <zsh@cs.rochester.edu>
8936
8937         * nnmail.el (nnmail-large-newsgroup): Fix doc, allow non-numeric
8938         value.
8939         Trivial change from andre@slamdunknetworks.com
8940
8941 2002-03-22  Josh Huber  <huber@alum.wpi.edu>
8942
8943         * mml.el (mml-mode-map): Added a keybinding for
8944         `mml-unsecure-message'.  Also, added a menu entry for said
8945         function in the Attachments menu.
8946
8947 2002-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8948
8949         * canlock.el (canlock-version): Remove.
8950         (canlock-sha1-with-openssl): Don't use `canlock-string-as-unibyte'
8951         here; simplify \x insertions.
8952         (canlock-sha1): New function, always return a unibyte string.
8953         (canlock-make-cancel-key): Use `canlock-sha1'; simplify truncation
8954         of a password.
8955         (canlock-insert-header): Use `canlock-sha1'.
8956         (canlock-verify): Ditto.
8957
8958 2002-03-21  ShengHuo ZHU  <zsh@cs.rochester.edu>
8959
8960         * message.el (message-fix-before-sending): Add an option that
8961         ignores illegible text.
8962         Trivial change from Mark Milhollan <mlm@attglobal.net>
8963
8964         * message.el (message-font-lock-keywords): Support multi-line MML
8965         tags.
8966
8967         * gnus-sum.el (gnus-print-buffer): Remove gnus-decoration.
8968         Trivial change from lorentey@elte.hu (L\e,Bu\e(Brentey K\e,Aa\e(Broly)
8969
8970 2002-03-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8971
8972         * gnus-sum.el (gnus-summary-make-menu-bar): Use intern'ed function
8973         symbols for "View as different encoding" submenu.
8974
8975 2002-03-19  Simon Josefsson  <jas@extundo.com>
8976
8977         * gnus-sum.el (gnus-summary-make-menu-bar): Add "View as different
8978         encoding" submenu.
8979
8980 2002-03-19  ShengHuo ZHU  <zsh@cs.rochester.edu>
8981
8982         * gnus-group.el (gnus-group-process-prefix): Make sure there is a mark.
8983
8984 2002-03-19  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8985
8986         * gnus-sum.el (gnus-sum-thread-tree-root)
8987         (gnus-sum-thread-tree-single-indent)
8988         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
8989         (gnus-sum-thread-tree-leaf-with-other)
8990         (gnus-sum-thread-tree-single-leaf): Make customizable.
8991
8992 2002-03-16  Simon Josefsson  <jas@extundo.com>
8993
8994         * gnus-util.el (gnus-extract-address-components): Don't break on
8995         names such as James "Kibo" Parry.  From Francis Litterio
8996         <franl@world.std.com>.
8997
8998 2002-03-13  Simon Josefsson  <jas@extundo.com>
8999
9000         * pop3.el (pop3-open-server): Revert multibyte change.  From
9001         Pavel@Janik.cz (Pavel Jan\e,Am\e(Bk).
9002
9003         * message.el (message-send-mail-with-qmail): Make it work.  From
9004         Pavel@Janik.cz (Pavel Jan\e,Am\e(Bk).
9005
9006 2002-03-13  Josh Huber  <huber@alum.wpi.edu>
9007
9008         * message.el (message-make-mft): Set case-fold-search while
9009         generating the MFT.  Also, a little cleanup in the MFT code.
9010
9011 2002-03-12  Simon Josefsson  <jas@extundo.com>
9012
9013         * message.el (message-qmail-inject-args): May be function.
9014         (message-send-mail-with-qmail): Call function if m-q-i-a is
9015         function.  From fn@hungry.org (Faried Nawaz).
9016
9017 2002-03-12  ShengHuo ZHU  <zsh@cs.rochester.edu>
9018
9019         * message.el (message-abbrevs-loaded): Remove.
9020         (mailabbrev): Require it.
9021
9022         * nnslashdot.el (nnslashdot-request-article): Remove IFRAME.
9023
9024 2002-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9025
9026         * pop3.el (pop3-open-server): Set process buffer unibyte.
9027
9028 2002-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9029
9030         * gnus-fun.el (gnus-subscribe-to-mailing-list): New function.
9031
9032 2002-03-10  ShengHuo ZHU  <zsh@cs.rochester.edu>
9033
9034         * nnslashdot.el (nnslashdot-request-article): Remove javascript
9035         too.
9036
9037 2002-03-09  ShengHuo ZHU  <zsh@cs.rochester.edu>
9038
9039         * gnus-sum.el (gnus-summary-save-parts-default-mime): Remove
9040         duplication.
9041         (gnus-summary-save-parts-type-history): Ditto.
9042         (gnus-summary-save-parts-last-directory): Ditto.
9043         Trivial change from andre@slamdunknetworks.com
9044
9045 2002-03-09  Paul Jarc  <prj@po.cwru.edu>
9046
9047         * gnus-start.el (gnus-auto-subscribed-groups): Include nnmaildir.
9048
9049 2002-03-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
9050
9051         * nnslashdot.el (nnslashdot-request-article): Use "<!-- no ad 6
9052         -->" as the end of the first article.
9053
9054         * gnus-msg.el (gnus-summary-resend-message-edit): New function.
9055         From Matthieu Moy <Matthieu.Moy@imag.fr>
9056
9057         * message.el (message-add-action): Use add-to-list.
9058         (message-delete-action): New function.
9059
9060         * nndoc.el (nndoc-mail-in-mail-type-p): Break a long regexp into
9061         pieces.
9062
9063 2002-03-05  Paul Jarc  <prj@po.cwru.edu>
9064
9065         * nnnil.el: New file.
9066         * gnus.el (gnus-valid-select-methods): Include nnnil.
9067
9068 2002-03-05  ShengHuo ZHU  <zsh@cs.rochester.edu>
9069
9070         * message.el (message-syntax-checks): Because canlock is
9071         supported, we disable sender syntax check.
9072         (message-shoot-gnksa-feet): Add cancel-messages option doc.
9073
9074         * gnus-draft.el (gnus-draft-send): If interactive, use its default
9075         value of message-syntax-checks.
9076
9077         * qp.el (quoted-printable-decode-region): Doc addition.
9078         From: Eli Zaretskii <eliz@is.elta.co.il>
9079
9080         * mail-source.el (make-source-make-complex-temp-name): Use
9081         make-temp-file.
9082
9083         * mm-util.el (mm-make-temp-file): New function.
9084         * nneething.el (nneething-file-name): Use it.
9085         * mml-smime.el (mml-smime-encrypt): Ditto.
9086         * mm-view.el (mm-inline-wash-with-file): Ditto.
9087         * mm-decode.el (mm-display-external, mm-create-image-xemacs): Ditto.
9088         * gnus-uu.el (gnus-uu-decode-binhex, gnus-uu-decode-binhex-view)
9089         (gnus-uu-digest-mail-forward, gnus-uu-initialize): Ditto.
9090         * gnus-start.el (gnus-slave-save-newsrc): Ditto.
9091         * gnus-fun.el (gnus-convert-image-to-gray-x-face): Ditto.
9092         * gnus-art.el (gnus-mime-print-part): Ditto.
9093
9094 2002-03-04  Paul Jarc  <prj@po.cwru.edu>
9095
9096         * message.el (nnmaildir-article-number-to-base-name): New
9097         function.
9098         (nnmaildir-base-name-to-article-number): New function.
9099
9100 2002-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9101
9102         * smime.el (smime-make-temp-file): Don't quote
9103         `temporary-file-directory'.
9104
9105 2002-03-04  Simon Josefsson  <jas@extundo.com>
9106
9107         * smime.el (smime-sign-region): Rename argument keyfiles to
9108         keyfile. You only sign something with one key.
9109         (smime-sign-buffer): Better completing-read prompt.
9110         (smime-decrypt-buffer): Ditto.
9111
9112         * smime.el (smime-make-temp-file): Make it work under XEmacs.
9113
9114         * mm-view.el (mm-view-pkcs7-decrypt): Better prompt for
9115         completing-read.
9116         (mm-view-pkcs7-decrypt): CRLF->LF.
9117
9118 2002-03-04  Paul Jarc  <prj@po.cwru.edu>
9119
9120         * message.el (message-hierarchical-addresses): New variable.
9121         (message-get-reply-headers): Use it.
9122         From Ted Zlatanov <teodor.zlatanov@divine.com>
9123
9124 2002-03-03  ShengHuo ZHU  <zsh@cs.rochester.edu>
9125
9126         * message.el (message-mode): If buffer-file-name, don't set auto
9127         save file name.
9128         Trivial change from Geoff Greene <ggreene@wpi.edu>
9129
9130 2002-03-02  ShengHuo ZHU  <zsh@cs.rochester.edu>
9131
9132         * gnus-util.el (gnus-multiple-choice): Use message. XEmacs only
9133         takes one argument in read-char.
9134
9135         * message.el (message-fix-before-sending): Forward a char.
9136         Check mmu-multibyte-p, add control-1.
9137
9138 2002-03-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
9139
9140         * gnus-start.el (gnus-read-init-file): Ditto.
9141
9142         * gnus-agent.el (gnus-agent-fetch-session): Ditto.
9143
9144         * dgnushack.el (dgnushack-make-load): Ditto.
9145
9146         * mail-source.el (mail-source-fetch): Extract the right error
9147         code.
9148
9149         * message.el (message-fix-before-sending): Check illegible text.
9150
9151         * gnus-util.el (gnus-multiple-choice): New function.
9152
9153         * gnus-kill.el (gnus-score-insert-help): Removed, because it is
9154         also defined in gnus-score.el.
9155
9156 2002-03-01  Paul Jarc  <prj@po.cwru.edu>
9157
9158         * message.el (message-get-reply-headers): downcase email addresses
9159         for comaparisons for duplicate removal.
9160
9161 2002-03-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
9162
9163         * mm-view.el (mm-view-pkcs7-verify): New function. A bogus
9164         implementation of PKCS#7, which just allows users read the
9165         message.
9166         (mm-view-pkcs7): Use it.
9167
9168 2002-02-27  ShengHuo ZHU  <zsh@cs.rochester.edu>
9169
9170         * gnus.el (large-newsgroup-initial): New parameter.
9171
9172         * gnus-sum.el (gnus-articles-to-read): Use large-newsgroup-initial.
9173         (gnus-summary-insert-old-articles): Ditto.
9174
9175 2002-02-26  ShengHuo ZHU  <zsh@cs.rochester.edu>
9176
9177         * gnus-sum.el (gnus-articles-to-read): `gnus-large-newsgroup' is
9178         used as the default answer of the question, "How many articles?".
9179         From TSUCHIYA Masatoshi <tsuchiya@namazu.org>
9180
9181         * nnagent.el (nnagent-retrieve-headers): Remove articles with
9182         small numbers.
9183
9184 2002-02-24  ShengHuo ZHU  <zsh@cs.rochester.edu>
9185
9186         * deuglify.el: Fix comments.
9187
9188 2002-02-23  ShengHuo ZHU  <zsh@cs.rochester.edu>
9189
9190         * html2text.el (html2text-clean-anchor): If there is no HREF,
9191         insert nothing.
9192
9193         * mml.el (mml-generate-mime-1): Add cdr.
9194         From: andre@slamdunknetworks.com
9195
9196         * mm-view.el (mm-text-html-renderer-alist): Add html2text.
9197         (mm-text-html-washer-alist): Ditto.
9198
9199         * mm-decode.el (mm-text-html-renderer): Add html2text.
9200
9201         * html2text.el: Face lift.
9202
9203         * html2text.el: New file from Joakim Hove <hove@phys.ntnu.no>.
9204
9205 2002-02-22  ShengHuo ZHU  <zsh@cs.rochester.edu>
9206
9207         * gnus-sum.el: Add gnus-article-outlook-deuglify-article.
9208
9209         * deuglify.el: Change copy right. Add autoload. Add coding-system.
9210
9211         * deuglify.el: New file. The original file name is
9212         gnus-outlook-deuglify.el from Raymond Scholz <rscholz@zonix.de>.
9213
9214         * mm-decode.el (mm-display-external): Use
9215         mm-file-name-rewrite-functions.  From <andre@slamdunknetworks.com>
9216
9217 2002-02-22  Paul Jarc  <prj@po.cwru.edu>
9218
9219         * nnmaildir.el (nnmaildir-request-list): Report the highest
9220         article number, not the total number of articles.
9221
9222 2002-02-21  ShengHuo ZHU  <zsh@cs.rochester.edu>
9223
9224         * gnus-sum.el: Move uu key map here.
9225         (gnus-summary-make-menu-bar): Add gnus-summary-save-parts.
9226
9227 2002-02-21  Paul Jarc  <prj@po.cwru.edu>
9228
9229         * nnmaildir.el (nnmaildir-request-expire-articles): Use
9230         nnmail-expiry-wait* if expire-age parameter is not set.
9231
9232 2002-02-21  ShengHuo ZHU  <zsh@cs.rochester.edu>
9233
9234         * gnus-group.el (gnus-group-sort-groups-by-real-name): New
9235         function.
9236         (gnus-group-sort-selected-groups-by-real-name): New function.
9237         (gnus-group-make-menu-bar): Add sort by real name.
9238
9239         * gnus-sum.el (gnus-dependencies-add-header): If replaced, don't
9240         rebuild.
9241         (gnus-summary-edit-article-done): Gnus-get-newsgroup-headers takes
9242         nil as dependencies as well.
9243
9244 2002-02-20  ShengHuo ZHU  <zsh@cs.rochester.edu>
9245
9246         * nndoc.el (nndoc-dissect-mime-parts-sub): Fix MIME-Version header
9247         for mime-parts.
9248
9249         * gnus-art.el (gnus-article-edit-done): Widen the buffer.
9250
9251         * gnus-group.el (gnus-group-name-decode): Don't test
9252         multibyte-string, because it breaks XEmacs.
9253         From: TSUCHIYA Masatoshi <tsuchiya@pine.kuee.kyoto-u.ac.jp>
9254
9255         * message.el (message-send-mail): Be talkative.
9256
9257         * mm-decode.el (mm-inlined-types): Add application/x-emacs-lisp.
9258         (mm-automatic-display): Ditto.
9259
9260         * mailcap.el (mailcap-mime-data): Ditto.
9261         From: Reiner Steib <4uce.02.r.steib@gmx.net>
9262
9263 2002-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9264
9265         * many files: Remove trailing whitespaces, replace spc+tab with
9266         tab, replace leading whitespaces with tabs.
9267
9268 2002-02-19  Paul Jarc  <prj@po.cwru.edu>
9269
9270         * gnus-sum.el (gnus-summary-toggle-header): Fix handling of
9271         articles with no body and no blank line after the header.
9272
9273 2002-02-19  ShengHuo ZHU  <zsh@cs.rochester.edu>
9274
9275         * mm-decode.el (mm-dissect-multipart): Consider the case of empty
9276         parts.
9277
9278         * ietf-drums.el (ietf-drums-syntax-table): Modify syntax of
9279         non-ascii chars.
9280
9281         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9282
9283         * gnus-art.el (gnus-article-wash-html-with-w3): Remove
9284         w3-delay-image-loads.
9285         * mm-view.el (mm-inline-text-html-render-with-w3): Ditto.
9286         (mm-w3-prepare-buffer): Ditto.
9287
9288         * mail-source.el (mail-source-fetch-directory): Run scripts.
9289
9290 2002-02-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9291
9292         * gnus-fun.el (gnus-respond-to-confirmation): Do the right thing
9293         for Majordomo confirmations.
9294
9295 2002-02-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9296
9297         * gnus-fun.el (gnus-respond-to-confirmation): New command.
9298
9299 2002-02-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9300
9301         * nnultimate.el (nnultimate-retrieve-headers): Clean up.
9302
9303 2002-02-18  Paul Jarc  <prj@po.cwru.edu>
9304
9305         * gnus-util.el (gnus-parent-id): Ignore trailing whitespace in the
9306         References header field.  From Mark Thomas <mthomas@cmu.edu>.
9307
9308 2002-02-18  ShengHuo ZHU  <zsh@cs.rochester.edu>
9309
9310         * mm-view.el (mm-inline-render-with-file): With unibyte buffer.
9311         (mm-inline-render-with-stdin): Ditto.
9312         (mm-inline-render-with-function): Ditto.
9313         (mm-inline-wash-with-file): Bind coding-system-for-write.
9314         (mm-inline-wash-with-stdin): Ditto.
9315
9316 2002-02-18  ShengHuo ZHU  <zsh@cs.rochester.edu>
9317
9318         Suggested by Felix Natter <fnatter@gmx.net>
9319
9320         * gnus-art.el (gnus-mime-view-part-externally): Rename from
9321         gnus-mime-externalize-view.
9322         (gnus-mime-view-part-internally): Rename from
9323         gnus-mime-internalize-view.
9324         (gnus-article-view-part-externally): Rename from
9325         gnus-article-externalize-part.
9326         (gnus-mime-action-alist): Change correspondingly.
9327         (gnus-mime-button-commands): Ditto.
9328         (gnus-mime-action-alist): Remove duplication.
9329
9330         * gnus-sum.el (gnus-summary-mime-map): Change correspondingly.
9331
9332 2002-02-18  ShengHuo ZHU  <zsh@cs.rochester.edu>
9333
9334         * mm-decode.el (mm-dissect-buffer): Add loose-mime parameter.
9335
9336         * gnus-art.el (gnus-display-mime): Use it.
9337
9338         * mm-partial.el (mm-partial-find-parts): Use it.
9339
9340         * gnus-sum.el (gnus-article-loose-mime): Rename from
9341         gnus-article-no-strict-mime.
9342         (gnus-summary-save-parts): Use it.
9343
9344 2002-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9345
9346         * gnus-fun.el (gnus-convert-gray-x-face-to-xpm): Remove unused
9347         local variable.
9348
9349         * gnus-art.el (article-display-x-face): Don't sort multiple
9350         X-Faces.
9351
9352 2002-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9353
9354         * gnus-fun.el (gnus-convert-gray-x-face-to-xpm): Improved to speed
9355         up.  Suggested by Yuuichi Teranishi <teranisi@gohome.org>.
9356
9357         * gnus-art.el (article-display-x-face): Sort gray X-Faces.
9358
9359 2002-02-17  ShengHuo ZHU  <zsh@cs.rochester.edu>
9360
9361         Some ideas is inspired by code from Hrvoje Niksic
9362         <hniksic@arsdigita.com>
9363
9364         * gnus-art.el (gnus-article-wash-function): Set the default to
9365         nil, so that we use mm-text-html-renderer instead.
9366         (article-wash-html): Use mm-text-html-renderer.
9367
9368         * mm-decode.el (mm-inline-media-tests): Use mm-inline-text-*.
9369         (mm-text-html-renderer): New variable.
9370         (mm-inline-text-html-renderer): Set the default to nil, so that we
9371         use mm-text-html-renderer instead.
9372
9373         * mm-view.el (mm-inline-text-html): New function.
9374         (mm-text-html-renderer-alist): New variable.
9375         (mm-inline-text-vcard): New function.
9376         (mm-inline-text): Split.
9377         (mm-links-remove-leading-blank): New function.
9378         (mm-inline-render-with-file): New function.
9379         (mm-inline-render-with-stdin): New function.
9380         (mm-inline-render-with-function): New function.
9381         (mm-text-html-washer-alist): New variable.
9382         (mm-inline-wash-with-file): New function.
9383         (mm-inline-wash-with-stdin): New function.
9384
9385 2002-02-17  ShengHuo ZHU  <zsh@cs.rochester.edu>
9386
9387         * message-utils.el: Fix installation doc.
9388         From: Reiner Steib <4uce.02.r.steib@gmx.net>
9389
9390 2002-02-16  ShengHuo ZHU  <zsh@cs.rochester.edu>
9391
9392         * gnus-msg.el (gnus-discouraged-post-methods): New variable.
9393         (gnus-post-method): Use it.
9394         (gnus-summary-cancel-article): Find the correct post-method.
9395
9396         * gnus-soup.el (gnus-soup-send-packet): Via ... using ...
9397         * message.el (message-send-news): Ditto.
9398         Suggested by Lloyd Zusman <ljz@asfast.com> and IPmonger
9399         <ipmonger@delamancha.org>
9400
9401         * gnus.el (gnus-select-method): Fix doc.
9402         (gnus-server-string): Use 'using nntp'.
9403
9404         * gnus-agent.el (gnus-slave-unplugged): New command.
9405         From: Felix Natter <fnatter@gmx.net>
9406
9407 2002-02-15  ShengHuo ZHU  <zsh@cs.rochester.edu>
9408
9409         * gnus-art.el (gnus-article-edit-done): Kill-all-local-variables.
9410         Call edit-done-function first, then change the window
9411         configuration.
9412         (gnus-article-edit-mode-map): Add message key bindings. Add menu.
9413         (gnus-article-edit-mode): mml-mode.
9414
9415         * gnus-util.el (gnus-byte-compile): Work around a bug in XEmacs
9416         21.4. Suggested by Russ Allbery <rra@stanford.edu> .
9417
9418         * message-utils.el: Adopt the file.
9419
9420         * message-utils.el: New file.
9421         From Holger Schauer <Holger.Schauer@gmx.de>
9422
9423 2002-02-14  ShengHuo ZHU  <zsh@cs.rochester.edu>
9424
9425         * gnus-sum.el (gnus-summary-move-article): Select-article only
9426         when gnus-move-split-methods is non-nil. And we don't render or
9427         mark the article.
9428
9429         * gnus-fun.el (gnus-shell-command-to-string): New function.
9430         (gnus-shell-command-on-region): New function.
9431         (gnus-random-x-face): Use them.
9432         (gnus-x-face-from-file): Ditto.
9433         (gnus-convert-image-to-gray-x-face): Ditto.
9434         (gnus-convert-gray-x-face-to-xpm): Ditto.
9435         (gnus-convert-image-to-x-face-command): Don't use 2>/dev/null.
9436
9437 2002-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9438
9439         * gnus-art.el (gnus-treat-display-xface): Don't use
9440         `shell-command-to-string' when compiling.
9441         (gnus-treat-display-grey-xface): Ditto.
9442
9443 2002-02-13  Paul Jarc  <prj@po.cwru.edu>
9444
9445         * nnmaildir.el (nnmaildir--article-count): If the group is
9446         completely empty, report minimum article number as 1 instead of 0.
9447
9448 2002-02-13  ShengHuo ZHU  <zsh@cs.rochester.edu>
9449
9450         * gnus-agent.el (gnus-get-predicate): Use nconc.
9451
9452         * gnus-sum.el (gnus-summary-display-make-predicate): Use
9453         gnus-summary-display-cache as cache.
9454
9455         * nndoc.el (nndoc-type-alist): Add mail-in-mail type.
9456         (nndoc-mail-in-mail-type-p): New function.
9457         (nndoc-mail-in-mail-article-begin): New function.
9458
9459 2002-02-12  ShengHuo ZHU  <zsh@cs.rochester.edu>
9460
9461         * mailcap.el (mailcap-mime-data): Use enriched-decode.
9462
9463         * gnus-cite.el (gnus-article-fill-cited-article): Bind
9464         use-hard-newlines to nil.
9465
9466         * gnus-xmas.el (gnus-xmas-image-type-available-p): Assume that
9467         image is not available if window-system is not available.
9468
9469         * gnus-sum.el (gnus-summary-display-make-predicate): Add unread.
9470
9471 2002-02-11  ShengHuo ZHU  <zsh@cs.rochester.edu>
9472
9473         * gnus.el (gnus-article-unpropagated-mark-lists): Don't propagate
9474         bookmark, because update-mark doesn't handle it correctly.
9475
9476 2002-02-09  ShengHuo ZHU  <zsh@cs.rochester.edu>
9477
9478         * gnus-soup.el (gnus-soup-send-packet): Send news and mail
9479         directly instead of calling message-send-mail.
9480
9481         * gnus-start.el (gnus-read-descriptions-file): Use
9482         gnus-default-charset.
9483
9484         * mm-util.el (mm-guess-mime-charset): New function.
9485
9486         * gnus.el (gnus-default-charset): Use it.
9487         (gnus-group-charset-alist): Remove .*, Let gnus-default-charset be
9488         the default.
9489
9490 2002-02-08  ShengHuo ZHU  <zsh@cs.rochester.edu>
9491
9492         * gnus-art.el (gnus-treat-display-grey-xface): New variable.
9493         (article-display-x-face): Use it.  Disable grey xface, if
9494         uncompface is not found.
9495
9496         * message.el (message-mode): Don't enable multibyte on an indirect
9497         buffer.
9498
9499         * nnrss.el (nnrss-content-function): New variable.
9500         (nnrss-request-article): Use it.
9501
9502 2002-02-08  ShengHuo ZHU  <zsh@cs.rochester.edu>
9503
9504         * gnus.el: Add article-unsplit-urls.
9505         * gnus-sum.el: Ditto.
9506         * gnus-art.el (gnus-treat-strip-cr): New variable.
9507         (gnus-treatment-function-alist): Use it.
9508         (article-unsplit-urls): New function.
9509         (gnus-article-make-menu-bar): Use it.
9510         From: Michael Cook <michael.cook@cisco.com>
9511
9512 2002-02-08  ShengHuo ZHU  <zsh@cs.rochester.edu>
9513
9514         * gnus-agent.el (gnus-agent-braid-nov): Find the first article to
9515         copy.
9516
9517 2002-02-07  Paul Jarc  <prj@po.cwru.edu>
9518
9519         * gnus-util.el (gnus-split-references): Allow (broken) Message-IDs
9520         with internal whitespace.
9521         (gnus-parent-id): Ditto.
9522
9523 2002-02-07  ShengHuo ZHU  <zsh@cs.rochester.edu>
9524
9525         * gnus-art.el (gnus-article-treat-body-boundary): Add
9526         gnus-decoration property.
9527         * gnus-msg.el (gnus-copy-article-buffer): Remove gnus-decoration.
9528
9529         * message.el (message-mode): Set local-abbrev-table.
9530         From Matt Armstrong <matt@lickey.com>.
9531
9532         * gnus-art.el (gnus-article-treat-unfold-headers): Don't remove
9533         too many spaces.
9534
9535         * rfc2047.el (rfc2047-unfold-region): Ditto.
9536         (rfc2047-decode-region): Don't unfold. Let
9537         gnus-article-treat-unfold-headers do it.
9538
9539         * gnus-sum.el (gnus-dependencies-add-header): Fix typo.
9540         From: Jesper Harder <harder@ifa.au.dk>
9541
9542 2002-02-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9543
9544         * gnus-msg.el (gnus-posting-styles): Add x-face-file.
9545         (gnus-configure-posting-styles): Use it.
9546         (gnus-configure-posting-styles): Remove trailing newspaces.
9547
9548 2002-02-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
9549
9550         * gnus-sum.el (gnus-articles-to-read): Fetch all if the predicate
9551         is non-nil.
9552
9553         * mm-util.el (mm-use-find-coding-systems-region): Add doc.
9554
9555         * gnus.el (gnus-server-to-method): Switch position with
9556         gnus-server-get-method.
9557         (gnus-agent): Add doc.
9558
9559         * gnus-sum.el (gnus-article-no-strict-mime): New variable.
9560         (gnus-summary-save-parts): Use it.
9561
9562         * gnus-art.el (gnus-display-mime): Use it.
9563         * mm-partial.el (mm-partial-find-parts): Use it.
9564
9565         * nnweb.el (nnweb-google-parse-1): Use a correct format of date.
9566
9567         * gnus-agent.el (gnus-agent-summary-make-menu-bar): Fix typo.
9568         From Stefan Reich\e,Av\e(Br <xsteve@riic.at>.
9569
9570         * nnagent.el (nnagent-request-expire-articles): Don't delete
9571         files.
9572
9573 2002-02-05  ShengHuo ZHU  <zsh@cs.rochester.edu>
9574
9575         * message.el (message-gen-unsubscribed-mft): New function.
9576         From Sriram Karra <karra@cs.utah.edu>.
9577
9578         * gnus.el (gnus-article-unpropagated-mark-lists): Backslash the
9579         open parenthesis.
9580
9581         * mm-view.el (mm-w3-prepare-buffer): Bind url-gateway-unplugged.
9582         (mm-inline-text-html-render-with-w3): Ditto.
9583         * gnus-art.el (gnus-article-wash-html-with-w3): Ditto.
9584         Suggested by Dave Love  <d.love@dl.ac.uk>.
9585
9586         * mm-url.el (mm-url-load-url): Require w3-vars for old versions.
9587
9588         * nntp.el (nntp-send-command-and-decode): Check PROCESS.
9589         * nntp.el (nntp-send-command): Ditto.
9590         * nntp.el (nntp-send-command-nodelete): Ditto.
9591
9592 2002-02-04  ShengHuo ZHU  <zsh@cs.rochester.edu>
9593
9594         * mm-url.el (mm-url-load-url): New function.
9595         (mm-url-insert-file-contents): Use it.
9596
9597         * gnus-msg.el (gnus-summary-mail-forward): Use gnus-article-charset.
9598
9599         * message.el (message-forward-make-body): Correctly copy
9600         forward-buffer.
9601
9602         * rfc2047.el (rfc2047-decode-region): Don't decode us-ascii characters.
9603
9604 2002-02-04  Simon Josefsson  <jas@extundo.com>
9605
9606         * gnus-art.el (gnus-article-followup-with-original): Mark with
9607         force, prevent errors when following up from article buffer.
9608         (gnus-article-reply-with-original): Ditto.
9609
9610         * binhex.el (binhex-decoder-switches): Fix doc.  From
9611         Pavel@Janik.cz (Pavel Jan\e,Am\e(Bk).
9612
9613 2002-02-04  ShengHuo ZHU  <zsh@cs.rochester.edu>
9614
9615         * gnus-art.el (gnus-treatment-function-alist): Move hide-citation,
9616         highlight-citation after emphasize.
9617
9618 2002-02-04  Simon Josefsson  <jas@extundo.com>
9619
9620         * nnfolder.el (nnfolder-open-marks):
9621
9622         * nnml.el (nnml-open-marks): Message when done.  From David
9623         Edmondson <dme@sun.com>.
9624
9625 2002-02-03  ShengHuo ZHU  <zsh@cs.rochester.edu>
9626
9627         * imap.el (imap-anonymous-auth): Fix typo.
9628         From: Steinar Bang <sb@dod.no>
9629
9630         * gnus-cache.el (gnus-cache-braid-nov): Use set-buffer instead of
9631         save-excursion.
9632         (gnus-cache-braid-heads): Ditto.
9633
9634         * gnus-agent.el (gnus-agent-copy-nov-line): Move to the correct
9635         line, because there are extra articles in the overview buffer.
9636
9637         * nntp.el (nntp-retrieve-groups): Check whether BUF is live.
9638
9639         * message.el (message-forward-rmail-make-body): Directly use
9640         rmail-msg-restore-non-pruned-header to avoid calling
9641         vertical-motion.
9642
9643 2002-02-02  ShengHuo ZHU  <zsh@cs.rochester.edu>
9644
9645         * gnus-cache.el (gnus-summary-insert-cached-articles):
9646         (gnus-summary-limit-include-cached): gnus-newsgroup-cached is sorted.
9647
9648         * gnus-group.el (gnus-group-mark-article-read): Nreverse
9649         gnus-newsgroups-unselected.
9650
9651         * gnus-agent.el (gnus-summary-set-agent-mark): Use
9652         gnus-add-to-sorted-list.
9653
9654         * gnus-sum.el (gnus-summary-update-info): gnus-newsgroup-unreads
9655         gnus-newsgroup-unselected are sorted. Use gnus-sorted-union.
9656         (gnus-build-all-threads): Use gnus-add-to-sorted-list.
9657         (gnus-update-read-articles): UNREAD is sorted.
9658         (gnus-newsgroup-unreads, gnus-newsgroup-unselected)
9659         (gnus-newsgroup-marked, gnus-newsgroup-cached)
9660         (gnus-newsgroup-expirable, gnus-newsgroup-downloadable)
9661         (gnus-newsgroup-dormant): Require sorted.
9662
9663         * gnus-dired.el (gnus-dired-find-file-mailcap): Correctly handle
9664         directories.
9665         (gnus-dired-print): New function.
9666
9667         * gnus-art.el (gnus-mime-print-part): Add argument filename. Call
9668         ps-despool.
9669
9670 2002-02-02  Simon Josefsson  <jas@extundo.com>
9671
9672         * gnus-dired.el (turn-on-gnus-dired-mode): Autoload.  Make defun.
9673
9674 2002-02-02  ShengHuo ZHU  <zsh@cs.rochester.edu>
9675
9676         * gnus-start.el (gnus-1): Call gnus-agentize if gnus-agent is
9677         t. This makes gnus-agent customizable without putting
9678         gnus-agentize into .gnus.
9679
9680         * gnus.el (gnus-agent): Make it customizable.
9681
9682         * gnus-dired.el: New file.
9683         From Benjamin Rutt <brutt@bloomington.in.us>
9684
9685         * gnus-cache.el (gnus-cache-articles-in-group): Remove from active
9686         if no article.
9687         (gnus-cache-possibly-remove-article): Ditto.
9688         (gnus-cache-possibly-enter-article): Use gnus-add-to-sorted-list.
9689
9690 2002-02-01  Simon Josefsson  <jas@extundo.com>
9691
9692         * gnus-int.el (gnus-request-accept-article): Use gnus-get-function.
9693
9694 2002-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9695
9696         * mm-view.el (mm-w3m-mode-dont-bind-keys): New variable.
9697         (mm-setup-w3m): Don't bind keys listed in the above.
9698
9699 2002-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9700
9701         * mm-view.el (mm-inline-text-html-render-with-w3m): Bind
9702         `w3m-safe-url-regexp' with nil if `mm-inline-text-html-with-images'
9703         is non-nil; bind `w3m-force-redisplay' with nil.
9704
9705         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
9706
9707         * mm-decode.el (mm-inline-text-html-with-images): Supplement docs.
9708
9709 2002-01-31  ShengHuo ZHU  <zsh@cs.rochester.edu>
9710
9711         * nnfolder.el (nnfolder-request-replace-article): Unfold. Don't
9712         use mail-header-unfold-field.
9713
9714         * gnus-cache.el (gnus-summary-insert-cached-articles): Use
9715         gnus-summary-limit.
9716
9717         * gnus-range.el (gnus-add-to-sorted-list): New function.
9718         * gnus-sum.el (gnus-mark-article-as-read): Use it.
9719         (gnus-mark-article-as-unread): Ditto.
9720         (gnus-summary-mark-article-as-unread): Ditto.
9721         (gnus-build-get-header): Ditto.
9722         (gnus-summary-prepare-threads): Ditto.
9723         (gnus-summary-insert-pseudos): Ditto.
9724         (gnus-articles-to-read): Use gnus-sorted-union and gnus-sorted-nunion.
9725         (gnus-summary-insert-new-articles): Use gnus-sorted-nunion.
9726         (gnus-summary-insert-old-articles): Ditto.
9727
9728         * gnus-msg.el (gnus-posting-styles): Add new format of header.
9729         (gnus-configure-posting-styles): Support the new format.
9730
9731         * mail-source.el (mail-source-bind, mail-source-bind-common): Set
9732         edebug-form-spec to (sexp body).
9733         Suggested by Joe Wells <jbw@izanami.cee.hw.ac.uk>.
9734
9735         * message.el (message-reply-headers): Add doc.
9736
9737 2002-01-30  ShengHuo ZHU  <zsh@cs.rochester.edu>
9738
9739         * gnus-group.el (gnus-group-delete-group): Nix the entry in
9740         gnus-cache-active-hashtb.
9741
9742         * gnus-agent.el (gnus-agent-mark-unread-afer-downloaded): New variable.
9743         (gnus-agent-summary-fetch-group): Use it.
9744
9745         * gnus-msg.el (gnus-debug-files): New variable.
9746         (gnus-debug-exclude-variables): New variable.
9747         (gnus-debug): Use them.
9748
9749         * gnus-range.el (gnus-range-length): Don't use gnus-uncompress-range.
9750
9751 2002-01-30  ShengHuo ZHU  <zsh@cs.rochester.edu>
9752
9753         * message.el (message-cite-prefix-regexp): Use text-mode-syntax-table.
9754         (message-mode-syntax-table): Move back the previous position.
9755
9756         * nnagent.el (nnagent-retrieve-headers): Use gnus-sorted-difference.
9757
9758         * gnus-agent.el (gnus-agent-retrieve-headers): Use
9759         gnus-sorted-difference.
9760
9761         * nnsoup.el (nnsoup-request-expire-articles): Use
9762         gnus-sorted-difference.
9763
9764         * nnheader.el: Autoload gnus-sorted-difference.
9765
9766         * nnfolder.el (nnfolder-request-expire-articles): Use
9767         gnus-sorted-difference.
9768
9769         * gnus-cache.el (gnus-cache-retrieve-headers): Use
9770         gnus-sorted-difference.
9771
9772         * gnus-range.el: Autoload cookies.
9773         (gnus-sorted-difference): New function.
9774         (gnus-sorted-ndifference): New function.
9775         (gnus-sorted-nintersection): Rename from
9776         gnus-set-sorted-intersection.
9777         (gnus-sorted-nunion): Rename from gnus-set-sorted-union.
9778         (gnus-list-range-difference): Rename from
9779         gnus-inverse-list-range-intersection.
9780         (gnus-inverse-list-range-intersection): Use defalias.
9781
9782         * gnus-sum.el (gnus-select-newsgroup): Use gnus-sorted-difference,
9783         gnus-sorted-ndifference, and gnus-sorted-nintersection.
9784         (gnus-articles-to-read): Use gnus-sorted-difference.
9785         (gnus-summary-limit-mark-excluded-as-read): Use
9786         gnus-sorted-intersection and gnus-sorted-ndifference.
9787         (gnus-list-of-read-articles): Use gnus-list-range-difference.
9788         (gnus-summary-insert-articles): Use gnus-sorted-difference.
9789
9790         * gnus-sum.el (gnus-summary-update-info): Use gnus-sorted-union.
9791
9792 2002-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9793
9794         * gnus-art.el (gnus-article-wash-html-with-w3m): Add keymap
9795         property to the buffer for using emacs-w3m command keys.
9796
9797         * mm-decode.el (mm-inline-text-html-with-w3m-keymap): New user
9798         option.
9799
9800         * mm-view.el (mm-w3m-mode-map): New variable.
9801         (mm-w3m-mode-command-alist): New variable.
9802         (mm-w3m-minor-mode): Removed.
9803         (mm-setup-w3m): Setup `mm-w3m-mode-map'; don't add minor mode.
9804         (mm-inline-text-html-render-with-w3m): Add keymap property to the
9805         buffer for using emacs-w3m command keys.
9806
9807 2002-01-29  ShengHuo ZHU  <zsh@cs.rochester.edu>
9808
9809         * message.el (message-mode-syntax-table): Move forward.
9810         (message-cite-prefix-regexp): Auto detect non word constituents.
9811         (message-cite-prefix-regexp): Don't use with-syntax-table.
9812
9813         * gnus-sum.el (gnus-summary-update-info): Use
9814         gnus-list-range-intersection.
9815
9816         * gnus-agent.el (gnus-agent-fetch-headers): Use
9817         gnus-list-range-intersection.
9818
9819         * gnus-range.el (gnus-range-normalize): Use correct predicate.
9820         (gnus-list-range-intersection): Use it.
9821         (gnus-inverse-list-range-intersection): Ditto.
9822         (gnus-sorted-intersection): Add doc.
9823         (gnus-set-sorted-intersection): Add doc.
9824         (gnus-sorted-union): New function.
9825         (gnus-set-sorted-union): New function.
9826
9827         * gnus-range.el (gnus-list-range-intersection): Correct the logic.
9828         (gnus-inverse-list-range-intersection): Ditto.
9829
9830 2002-01-29  Karl Kleinpaste  <karl@charcoal.com>
9831
9832         * mm-uu.el (mm-uu-type-alist): Add optional leading `0'.
9833
9834         * gnus-uu.el (gnus-uu-shar-name-marker): Add optional leading `0'
9835         and permit `:' and `\' in order to handle full Windows pathnames.
9836         (gnus-uu-begin-string): Add optional leading `0'.  Leading `0' is
9837         technically not correct per standard, but seems to have common use.
9838
9839 2002-01-29  ShengHuo ZHU  <zsh@cs.rochester.edu>
9840
9841         * gnus-uu.el (gnus-uu-expand-numbers): Ignore errors when
9842         replacing numbers.
9843
9844 2002-01-28  ShengHuo ZHU  <zsh@cs.rochester.edu>
9845
9846         * gnus-art.el (gnus-article-followup-with-original): Use (mark).
9847
9848         * gnus-score.el (gnus-score-insert-help): Move to (point-min).
9849         Don't split when the window is small, e.g. when a small *BBDB*
9850         window is the lowest one.
9851
9852         * gnus-agent.el (gnus-agent-retrieve-headers): Use
9853         nnheader-find-nov-line to speed up. Use nreverse, because it is
9854         sorted. Use nnheader-insert-nov-file.
9855
9856 2002-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9857
9858         * mm-decode.el (mm-inline-text-html-with-images): New user option.
9859
9860         * mm-view.el (mm-inline-text-html-render-with-w3m): Bind the value
9861         of `w3m-display-inline-images' with the value of
9862         `mm-inline-text-html-with-images'.
9863         From: TSUCHIYA Masatoshi <tsuchiya@namazu.org>.
9864
9865         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
9866
9867 2002-01-27  Richard M. Stallman  <rms@gnu.org>
9868
9869         * time-date.el: Add autoload cookies.  Many doc fixes.
9870         (time-add): New function.
9871         (time-subtract): Renamed from subtract-time.
9872         (subtract-time): New alias for time-subtract.
9873
9874 2002-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9875
9876         * gnus-art.el (gnus-article-wash-html-with-w3m): Replace w3m to
9877         emacs-w3m in doc-string.
9878
9879         * lpath.el: Bind `w3m-cid-retrieve-function-alist' and
9880         `w3m-current-buffer'.
9881
9882 2002-01-27  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
9883
9884         * gnus-art.el (gnus-article-wash-html-with-w3m): Handle cid: URLs.
9885
9886         * mm-view.el (mm-setup-w3m): Add `mm-w3m-cid-retrieve' to
9887         `w3m-cid-retrieve-function-alist' for `gnus-article-mode'.
9888         (mm-w3m-cid-retrieve): New function.
9889         (mm-inline-text-html-render-with-w3m): Handle cid: URLs.
9890
9891 2002-01-27  ShengHuo ZHU  <zsh@cs.rochester.edu>
9892
9893         * gnus-agent.el (gnus-agent-fetch-articles): Don't save empty articles.
9894
9895 2002-01-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9896
9897         * gnus-util.el (gnus-cache-file-contents): Don't use equalp.
9898
9899 2002-01-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9900
9901         * nnheader.el (nnheader-insert-nov-file): Increased cutoff to
9902         32K.
9903
9904         * gnus-sum.el (gnus-summary-expire-articles): Clean up.
9905
9906         * nnmail.el (nnmail-article-group): Decode headers before running
9907         split rules over them.
9908         (nnmail-mail-splitting-charset): New variable.
9909
9910         * smiley.el: Replaced with smiley-ems.el.
9911
9912 2002-01-26  ShengHuo ZHU  <zsh@cs.rochester.edu>
9913
9914         * mm-url.el (mm-url-predefined-programs): Add w3m.
9915         (mm-url-program): Ditto.
9916
9917 2002-01-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9918
9919         * nnml.el (nnml-use-compressed-files): New variable.
9920         (nnml-filenames-are-evil): Removed.
9921         (nnml-current-group-article-to-file-alist): Don't use.
9922         (nnml-update-file-alist): Inhibit.
9923         (nnml-article-to-file): Use new var.
9924
9925 2002-01-26  ShengHuo ZHU  <zsh@cs.rochester.edu>
9926
9927         * gnus-util.el (gnus-parse-without-error): Add edebug-form-spec.
9928
9929         * nnagent.el (nnagent-retrieve-headers): loop until eobp.
9930
9931 2002-01-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9932
9933         * gnus-agent.el (gnus-agent-load-alist): Use new caching
9934         function.
9935
9936         * gnus-util.el (gnus-cache-file-contents): New function.
9937
9938         * gnus-agent.el (gnus-agent-file-loading-cache): New variable.
9939         (gnus-agent-load-alist): Use it.
9940
9941         * nnagent.el (nnagent-retrieve-headers): Use optimized function.
9942
9943         * nnheader.el (nnheader-insert-nov-file): New function.
9944
9945         * gnus-util.el (gnus-parse-without-error): Correct the loop.
9946
9947         * gnus-sum.el (gnus-dependencies-add-header): Use in-reply-to if
9948         there are no references.
9949         (gnus-extract-message-id-from-in-reply-to): New function.
9950         (gnus-nov-parse-line): Use in-reply-to if there are no
9951         references.
9952
9953 2002-01-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9954
9955         * nnagent.el (nnagent-retrieve-headers): Use new macro.
9956
9957         * gnus-util.el (gnus-parse-without-error): New macro.
9958
9959 2002-01-25  ShengHuo ZHU  <zsh@cs.rochester.edu>
9960
9961         * gnus-art.el (gnus-article-wash-html-with-w3m): Call w3m-region.
9962         (gnus-article-wash-function): use locate-library to decide which
9963         to use.
9964
9965 2002-01-25  Simon Josefsson  <jas@extundo.com>
9966
9967         * pop3.el (pop3-munge-message-separator): Work if no date.
9968         Trivial patch from Marius Vollmer <mvo@zagadka.ping.de>.
9969
9970 2002-01-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9971
9972         * gnus-agent.el (gnus-agent-save-alist): Fix.
9973
9974         * nnagent.el (nnagent-retrieve-headers): Must have cut too much by
9975         mistake.  Reinstated lost code.
9976
9977 2002-01-25  Josh Huber  <huber@alum.wpi.edu>
9978
9979         * mml2015.el (mml2015-mailcrypt-decrypt): Display a signature if
9980         one exists in the case of an encrypted message with an internal
9981         signature.
9982
9983 2002-01-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9984
9985         * gnus-agent.el (gnus-agent-save-alist): Optimized.
9986
9987 2002-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9988
9989         * dgnushack.el: Commented out the experimental code.
9990
9991 2002-01-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9992
9993         * gnus-range.el (gnus-inverse-list-range-intersection): Off-by-one
9994         error.
9995
9996         * gnus.el (gnus-server-to-method): Made into subst.
9997         (gnus-server-method-cache): New variable.
9998         (gnus-server-to-method): Use it.
9999         (gnus-group-method-cache): New variable.
10000         (gnus-find-method-for-group-1): Renamed.
10001         (gnus-find-method-for-group): New function.
10002         (gnus-group-method-cache): Removed.
10003
10004         * gnus-sum.el (gnus-compute-unseen-list): Use new optimized
10005         function.
10006
10007         * gnus-range.el (gnus-members-of-range): New function.
10008         (gnus-list-range-intersection): Renamed.
10009         (gnus-inverse-list-range-intersection): New function.
10010
10011         * gnus-sum.el (gnus-compute-unseen-list): Made into own function.
10012
10013         * nnagent.el (nnagent-retrieve-headers): New implementation.
10014
10015         * gnus-agent.el (gnus-agent-get-undownloaded-list): New, faster
10016         implementation.
10017
10018 2002-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10019
10020         * lpath.el: Fbind `w3m-charset-to-coding-system'; bind
10021         `w3m-meta-content-type-charset-regexp'.
10022
10023         * mm-view.el (mm-inline-text-html-render-with-w3m): Decode
10024         charset-encoded html contents.
10025
10026 2002-01-24  ShengHuo ZHU  <zsh@cs.rochester.edu>
10027
10028         * gnus-agent.el (gnus-agent-request-article): Make sure it is not
10029         an empty file.
10030
10031         * nnweb.el (url): Ignore errors when request url.
10032
10033         * nnrss.el: Clean up the comments.
10034
10035 2002-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10036
10037         * lpath.el: Fbind `w3m-region'; bind `w3m-mode-map'.
10038
10039         * mm-decode.el (mm-inline-text-html-renderer): New user option.
10040         (mm-inline-media-tests): Test whether the value of
10041         `mm-inline-text-html-renderer' is a function for text/html.
10042
10043         * mm-view.el (mm-inline-text-html-render-with-w3): New function
10044         separated from `mm-inline-text'.
10045         (mm-w3m-minor-mode): New variable.
10046         (mm-w3m-setup): New variable.
10047         (mm-setup-w3m): New function.
10048         (mm-inline-text-html-render-with-w3m): New function.
10049         (mm-inline-text): Funcall `mm-inline-text-html-renderer' for
10050         text/html.
10051
10052 2002-01-23  Paul Jarc  <prj@po.cwru.edu>
10053
10054         * lpath.el: fbind make-symbolic-link and unix-sync for nnmaildir.
10055
10056 2002-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10057
10058         * gnus-xmas.el (gnus-xmas-redefine): Quote `gnus-completing-read'
10059         and `gnus-xmas-completing-read'.
10060
10061 2002-01-19  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10062
10063         * nneething.el (nneething-message-id-number): Abolished.
10064         (nneething-encode-file-name): Not encode numerical characters.
10065         (nneething-make-head): `nneething-message-id-number' is not
10066         used to generate message IDs.
10067
10068 2002-01-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10069
10070         * gnus-art.el (gnus-emphasis-alist): Include !? as sentence-ending
10071         characters.
10072
10073 2002-01-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10074
10075         * gnus-xmas.el (gnus-xmas-completing-read): New function.
10076         (gnus-xmas-redefine): Redefine conditionally.
10077
10078 2002-01-22  Josh Huber  <huber@alum.wpi.edu>
10079
10080         * mml.el (mml-parse-1): Fixed usage of recipients in the secure
10081         tag.
10082
10083 2002-01-22  Josh Huber  <huber@alum.wpi.edu>
10084
10085         * message.el (message-font-lock-keywords): Added the secure tag.
10086         * mml-sec.el: Added functions to generate/modify/remove the secure
10087         tag while in message mode.
10088         * mml-sec.el (mml-secure-message): New.
10089         * mml-sec.el (mml-unsecure-message): New.
10090         * mml-sec.el (mml-secure-message-sign-smime): New.
10091         * mml-sec.el (mml-secure-message-sign-pgp): New.
10092         * mml-sec.el (mml-secure-message-sign-pgpmime): New.
10093         * mml-sec.el (mml-secure-message-encrypt-smime): New.
10094         * mml-sec.el (mml-secure-message-encrypt-pgp): New.
10095         * mml-sec.el (mml-secure-message-encrypt-pgpmime): New.
10096         * mml.el (mml-parse-1): Added code to recognise the secure tag and
10097         convert it to either a part or multipart depending on if there are
10098         other parts in the message.
10099         * mml.el (mml-mode-map): Changed default sign/encrypt keybindings
10100         to use the secure tag, rather than the part tag.
10101         * mml.el (mml-preview): Added a save-excursion to keep cursor
10102         position after doing an MML preview.
10103
10104 2002-01-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10105
10106         * nnheader.el (nnheader-parse-overview-file): New function.
10107         (nnheader-write-overview-file): New function.
10108
10109 2002-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10110
10111         * gnus.el (gnus-group-fast-parameter): Check better if expansion
10112         in wanted.
10113
10114         * nnweb.el (nnweb-type-definition): Clean up.
10115
10116 2002-01-21  Alastair Burt  <burt@dfki.de>
10117         Trivial patch.
10118
10119         * gnus-art.el (gnus-mm-display-part): Make sure that the summary
10120         buffer exists before jumping to it.
10121
10122 2002-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10123
10124         * gnus-art.el (gnus-article-wash-html-with-w3): Made into own
10125         function.
10126         (article-wash-html): Use it.
10127         (gnus-article-wash-function): New variable.
10128         (gnus-article-wash-html-with-w3m): New function.
10129
10130 2002-01-20  Bj\e,Av\e(Brn Torkelsson  <torkel@acc.umu.se>
10131
10132         * dgnushack.el (dgnushack-compile): Compile smiley-ems for
10133         XEmacs.
10134
10135 2002-01-20  John H. Palmieri  <palmieri@math.washington.edu>
10136
10137         * gnus-fun.el (gnus-convert-image-to-gray-x-face): More standard
10138         command line.
10139
10140 2002-01-21  Simon Josefsson  <jas@extundo.com>
10141
10142         * canlock.el (base64-encode-string): Autoload it from base64.
10143         (canlock-make-cancel-key): Base64 encode unibyte string.
10144
10145 2002-01-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10146
10147         * nnfolder.el (nnfolder-request-accept-article): Unfold
10148         x-from-line.
10149         (nnfolder-request-replace-article): Ditto.
10150
10151 2002-01-20  Nevin Kapur  <nevin@jhu.edu>
10152
10153         * gnus-group.el (gnus-group-best-unread-group): Use the right
10154         positioning function.
10155
10156 2002-01-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10157
10158         * smiley-ems.el (smiley-region): Use new function.
10159         (smiley-update-cache): Use general image functions.
10160         (smiley-region): Use general functions.
10161
10162         * gnus-util.el (gnus-graphic-display-p): New function.
10163
10164         * nnmail.el (nnmail-article-group): Allow outputting traces of
10165         non-strings.
10166
10167         * nndoc.el (nndoc-type-alist): Rules for exim bounces.
10168         (nndoc-exim-bounce-type-p): New function.
10169
10170         * message.el (message-dont-send): Doc fix.
10171
10172         * gnus-util.el (gnus-completing-read): Remove
10173         inherit-input-method.
10174
10175         * gnus-art.el (gnus-treat-smiley): Doc fix.
10176
10177         * gnus-agent.el (gnus-agent-fetch-headers): Ignore seen and recent
10178         articles.
10179
10180 2002-01-19  Simon Josefsson  <jas@extundo.com>
10181
10182         * imap.el (imap-gssapi-open): Don't wait for logout to complete.
10183         (imap-kerberos4-open): Ditto.
10184         (imap-open): Set port correctly, don't set auth.
10185
10186 2002-01-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10187
10188         * gnus.el (gnus-version-number): Bump version number.
10189
10190 2002-01-20 05:33:30 Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
10191
10192         * gnus.el: Oort Gnus v0.05 is released.
10193
10194 2002-01-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10195
10196         * nnkiboze.el (nnkiboze-generate-group): Make sure the directory
10197         exists.
10198
10199         * gnus-spec.el (gnus-string-width-function): New function.
10200         (gnus-tilde-cut-form): Use it.
10201         (gnus-tilde-max-form): Ditto.
10202         (gnus-use-correct-string-widths): Default to (featurep 'xemacs).
10203         (gnus-substring-function): Use it.
10204         (gnus-tilde-cut-form): Ditto.
10205         (gnus-substring-function): New function.
10206
10207         * message.el (message-check-news-header-syntax): New message.
10208
10209         * gnus.el (gnus-slave-no-server): Doc fix.
10210
10211         * gnus-spec.el (gnus-use-correct-string-widths): Default to t.
10212
10213 2002-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10214
10215         * gnus-sum.el (gnus-adjust-marked-articles): Fix the record for
10216         `seen' if it looks like (seen NUM1 . NUM2).  It should be
10217         (seen (NUM1 . NUM2)).
10218
10219 2002-01-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10220
10221         * gnus-topic.el (gnus-topic-catchup-articles): Update article
10222         number in closed topics.
10223
10224 2002-01-19  Daniel Pittman  <daniel@rimspace.net>
10225
10226         * gnus-sum.el (gnus-summary-first-unseen-or-unread-subject): New
10227         functions.
10228
10229 2002-01-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10230
10231         * gnus.el (gnus-group-find-parameter): Clean up.
10232
10233         * gnus-sum.el (gnus-summary-goto-subject): Error on non-numerical
10234         articles.
10235
10236         * gnus-util.el (gnus-completing-read-with-default): Renamed.
10237
10238         * nnmail.el (nnmail-article-group): Clean up.
10239
10240 2002-01-19  Paul Stodghill  <stodghil@cs.cornell.edu>
10241
10242         * gnus-agent.el (gnus-category-name): Intern the category name.
10243
10244 2002-01-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10245
10246         * gnus-topic.el (gnus-topic-move-group): Use gnus-topic-history.
10247
10248         * gnus-util.el (gnus-completing-read): New function.
10249
10250 2002-01-19  ShengHuo ZHU  <zsh@cs.rochester.edu>
10251
10252         * gnus-art.el (gnus-add-wash-type): Use add-to-list.
10253
10254         * smiley-ems.el (smiley-region): Register smiley.
10255         (smiley-toggle-buffer): Rewrite the function.
10256         (smiley-active): Removed.
10257
10258 2002-01-19  Simon Josefsson  <jas@extundo.com>
10259
10260         * gnus-util.el (gnus-parent-id): Optimize null n case.  From
10261         Jesper Harder <harder@ifa.au.dk>.
10262
10263 2002-01-18  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10264
10265         * gnus-art.el (gnus-request-article-this-buffer): Call
10266         `nneething-get-file-name' to extract the file name from the
10267         message id.
10268
10269         * nneething.el (nneething-encode-file-name): New function.
10270         (nneething-decode-file-name): Ditto.
10271         (nneething-get-file-name): Ditto.
10272         (nneething-make-head): Encode the file name and encapsulate it
10273         into the field of the message id.
10274
10275 2002-01-18  Simon Josefsson  <jas@extundo.com>
10276
10277         * nnml.el (nnml-request-update-info): Don't erase flags that isn't
10278         stored in .marks.
10279
10280         * nnfolder.el (nnfolder-request-update-info): Ditto.
10281
10282 2002-01-18  ShengHuo ZHU  <zsh@cs.rochester.edu>
10283
10284         * gnus-art.el (gnus-url-parse-query-string): Allow new line in value.
10285
10286 2002-01-18  Simon Josefsson  <jas@extundo.com>
10287
10288         * imap.el (imap-starttls-p): Don't check for binary.
10289         (imap-gssapi-auth-p): Ditto.
10290         (imap-kerberos4-auth-p): Ditto.
10291         (imap-open): Change logic.  Iterate through all possible streams,
10292         instead of bailing out after first failure.  Move authenticator
10293         decision to `imap-authenticate'.
10294         (imap-authenticate): Change logic, now finds the authenticator to
10295         use, was previously in `imap-open'.
10296         (imap-open): Return nil on failure.
10297         (imap-open): Setup temp buffer correctly.
10298         (imap-open): Return buffer only on success.
10299         (imap-interactive-login, imap-interactive-login): Tell the user
10300         which stream/authenticator is used for the queried
10301         username/password.
10302         (imap-open, imap-authenticate): Set variables.
10303         (imap-gssapi-auth-p, imap-kerberos4-auth-p): Fix typo.
10304         (imap-open): Don't assume how `with-temp-buffer' is implemented.
10305
10306 2002-01-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10307
10308         * gnus-fun.el (gnus-grab-cam-x-face): New function.
10309
10310 2002-01-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10311
10312         * gnus-art.el (gnus-emphasis-alist): Allow matching "*this*.)".
10313
10314 2002-01-17  ShengHuo ZHU  <zsh@cs.rochester.edu>
10315
10316         * gnus-agent.el (gnus-agent-toggle-group-plugged): New function.
10317         (gnus-agent-group-mode-map): Bind it to "Jo".
10318         (gnus-agent-group-make-menu-bar): Add it into menu bar.
10319
10320 2002-01-17  Karl Kleinpaste  <karl@charcoal.com>
10321
10322         * gnus-xmas.el (gnus-group-toolbar): Add .newsrc save button.
10323         (gnus-summary-mail-toolbar): Add mail article deletion button.
10324
10325         * smiley.el (smiley-deformed-regexp-alist): Eliminate noseless
10326         false positives for lines of "^^^^".
10327
10328         * gnus-picon.el (gnus-picon-find-face): faces database is all
10329         lowercase.
10330
10331 2002-01-17  ShengHuo ZHU  <zsh@cs.rochester.edu>
10332
10333         * gnus-agent.el (gnus-agent-retrieve-headers): Use correct buffer.
10334         (gnus-agent-braid-nov): Switch back to nntp-server-buffer. Remove
10335         duplications.
10336         (gnus-agent-batch): Bind gnus-agent-confirmation-function.
10337
10338 2002-01-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10339
10340         * gnus-sum.el (gnus-summary-initial-limit): Inline
10341         gnus-summary-limit-children.
10342         (gnus-summary-initial-limit): Don't limit if
10343         gnus-newsgroup-display is nil.
10344         (gnus-summary-initial-limit): No, don't.
10345
10346         * gnus-util.el
10347         (gnus-put-text-property-excluding-characters-with-faces): Inline
10348         gnus-put-text-property.
10349
10350         * gnus-spec.el (gnus-default-format-specs): New variable.
10351
10352         * gnus-start.el (gnus-read-newsrc-file): Don't clear
10353         gnus-format-specs.
10354         (gnus-read-newsrc-el-file): Default to gnus-default-format-specs.
10355
10356         * gnus-spec.el (gnus-update-format-specifications): Really check
10357         the Gnus version of the .newsrc.eld file.
10358         (gnus-format-specs): Save the new default summary format.
10359
10360         * gnus-util.el (gnus-parent-id): Check whether references is empty
10361         before splitting.
10362
10363         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Inline some
10364         functions.
10365         (gnus-gather-threads-by-references): Inline
10366         `gnus-split-references'.
10367
10368         * gnus-spec.el (gnus-summary-line-format-spec): New, optimized
10369         default value of gnus-summary-line-format-spec.
10370
10371 2002-01-15  ShengHuo ZHU  <zsh@cs.rochester.edu>
10372
10373         * nnslashdot.el (nnslashdot-retrieve-headers-1): A better error
10374         message.
10375         (nnslashdot-request-list): Ditto.
10376         (nnslashdot-sid-strip): Removed.
10377
10378 2002-01-15  Simon Josefsson  <jas@extundo.com>
10379
10380         * nnimap.el (nnimap-close-asynchronous): Enable.
10381         (nnimap-close-group): Expunge.
10382
10383 2002-01-15  ShengHuo ZHU  <zsh@cs.rochester.edu>
10384
10385         * gnus-util.el (gnus-user-date-format-alist): Typo.
10386         From: Frank Schmitt <usereplyto@Frank-Schmitt.net>
10387
10388 2002-01-15  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10389
10390         * nneething.el (nneething-request-article): Set
10391         `nnmail-file-coding-system' to `binary' locally, in order to read
10392         files without any conversion.
10393
10394 2002-01-15  ShengHuo ZHU  <zsh@cs.rochester.edu>
10395
10396         * gnus-agent.el (gnus-agent-retrieve-headers): Use
10397         nnheader-file-coding-system and nnmail-active-file-coding-system.
10398         (gnus-agent-regenerate-group): Ditto.
10399         (gnus-agent-regenerate): Ditto.
10400         (gnus-agent-write-active): Ditto.
10401         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>
10402
10403 2002-01-14  ShengHuo ZHU  <zsh@cs.rochester.edu>
10404
10405         * gnus-art.el (gnus-button-alist): Don't highlight <URL:.
10406         Suggested by Ian Fitchet <ian.fitchet@lunanbay.com>
10407
10408 2002-01-14  ShengHuo ZHU  <zsh@cs.rochester.edu>
10409
10410         * gnus.el: We don't need gnus-article-show-all-headers.
10411
10412         * gnus-art.el (article-show-all, gnus-article-show-all-header):
10413         Ditto.
10414
10415         * gnus-sum.el (gnus-summary-select-article): Don't call
10416         show-all-headers, because hidden headers are not hidden text any
10417         more.
10418
10419 2002-01-13  Simon Josefsson  <jas@extundo.com>
10420
10421         * message.el (message-newline-and-reformat): Use `newline' instead
10422         of inserting \n, so that the newline is marked as hard.
10423
10424         * gnus-spec.el (gnus-pad-form): Don't evaluate EL multiple times.
10425         From Jesper Harder <harder@ifa.au.dk>.
10426
10427 2002-01-12  ShengHuo ZHU  <zsh@cs.rochester.edu>
10428
10429         * imap.el (imap-close): Keep going if quit.
10430
10431         * gnus-agent.el (gnus-agent-retrieve-headers): Erase
10432         nntp-server-buffer.
10433
10434 2002-01-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10435
10436         * mm-view.el (mm-display-inline-fontify): Require font-lock to
10437         avoid unbinding shadowed variables.
10438
10439         * gnus-art.el (gnus-picon-databases): Moved here.
10440         (gnus-picons-installed-p): Moved here.
10441         (gnus-article-reply-with-original): Use `mark'.
10442
10443         * gnus.el (gnus-picon): Moved here and renamed.
10444
10445         * gnus-art.el (gnus-treat-from-picon): Only be on if picons are
10446         installed.
10447         (gnus-treat-mail-picon): Ditto.
10448         (gnus-treat-newsgroups-picon): Ditto.
10449
10450         * gnus-picon.el (gnus-picons-installed-p): New function.
10451
10452 2002-01-12  ShengHuo ZHU  <zsh@cs.rochester.edu>
10453
10454         * gnus-agent.el (gnus-agent-go-online): Fix doc.
10455
10456 2002-01-12  Simon Josefsson  <jas@extundo.com>
10457
10458         * nnimap.el (nnimap-need-unselect-to-notice-new-mail)
10459         (nnimap-before-find-minmax-bugworkaround): Use it.
10460         (nnimap-find-minmax-uid): Don't reselect current mailbox.
10461         (nnimap-dont-close): New variable.
10462         (nnimap-close-group): Use it.
10463
10464 2002-01-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10465
10466         * gnus-art.el (gnus-article-reply-with-original): Use
10467         `mark-active'.
10468
10469         * gnus-msg.el (gnus-summary-reply): Don't bug out on regions.
10470
10471         * gnus-logic.el (gnus-advanced-score-rule): Thinko fix.
10472         (gnus-score-advanced): Clean up.
10473         (gnus-score-advanced): Accept a multiple of the score.
10474
10475 2002-01-12  Simon Josefsson  <jas@extundo.com>
10476
10477         * flow-fill.el (fill-flowed-display-column)
10478         (fill-flowed-encode-columnq): New variables.  Suggested by
10479         Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Gro\e,b_\e(Bjohann).
10480         (fill-flowed-encode, fill-flowed): Use them.
10481
10482         * message.el (message-send-news, message-send-mail): Use
10483         m-b-s-n-p-e-h-n.
10484
10485         * mml.el (autoload): Autoload fill-flowed-encode.
10486         (mml-buffer-substring-no-properties-except-hard-newlines): New
10487         function.
10488         (mml-read-part): Use it.
10489         (mml-generate-mime-1): Encode format=flowed if appropriate.
10490         (mml-insert-mime-headers): Insert format=flowed.
10491
10492         * flow-fill.el (fill-flowed-encode): New function.
10493         (fill-flowed): Bind fill-column to window width.
10494
10495 2002-01-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10496
10497         * gnus-sum.el (gnus-summary-buffer-name): Return the dead name if
10498         it exists.
10499         (gnus-summary-setup-buffer): Wake up dead summary buffers.
10500         (gnus-summary-buffer-name): Don't return the dead name after all.
10501         (gnus-summary-setup-buffer): Kill the dead buffer.
10502
10503         * gnus-art.el (gnus-article-followup-with-original): Store the
10504         value of the mark before deactivating it.
10505
10506 2002-01-11  ShengHuo ZHU  <zsh@cs.rochester.edu>
10507
10508         * gnus-fun.el (gnus-display-x-face-in-from): Fake it.
10509         From: Karl Kleinpaste <karl@charcoal.com>
10510
10511         * gnus-art.el (article-display-x-face): Ditto.
10512         (gnus-article-reply-with-original): Use gnus-region-active-p.
10513         (gnus-article-followup-with-original): Ditto.
10514
10515         * gnus-sum.el (gnus-summary-read-group-1): Don't select
10516         downloadable article either.
10517
10518 2002-01-11  ShengHuo ZHU  <zsh@cs.rochester.edu>
10519
10520         * gnus-art.el (article-display-x-face): Insert From:.
10521
10522         * gnus-sum.el (gnus-summary-move-article): Don't draw the
10523         article. Bind gnus-display-mime-function and
10524         gnus-article-prepare-hook.
10525
10526         * gnus-agent.el (gnus-agent-retrieve-headers): Load agentview.
10527         (gnus-agent-toggle-plugged): Use gnus-agent-go-online. Move
10528         gnus-agent-possibly-synchronize-flags to the last.
10529         (gnus-agent-go-online): New function. New variable.
10530
10531 2002-01-11  ShengHuo ZHU  <zsh@cs.rochester.edu>
10532
10533         * gnus-agent.el (gnus-agent-regenerate-group): Add clean option.
10534         (gnus-agent-regenerate): Ditto.
10535
10536 2002-01-11  ShengHuo ZHU  <zsh@cs.rochester.edu>
10537
10538         * message.el (message-ignored-news-headers)
10539         (message-ignored-mail-headers): Add X-Gnus-Agent-Meta-Information:.
10540         Suggested by ARISAWA Akihiro <ari@atesoft.advantest.co.jp>
10541
10542         * gnus.el (gnus-gethash-safe): New macro.
10543
10544         * gnus-agent.el (gnus-agent-regenerate-history): New function.
10545         (gnus-agent-regenerate): Show messages.
10546
10547 2002-01-11  ShengHuo ZHU  <zsh@cs.rochester.edu>
10548
10549         * gnus-agent.el (gnus-agent-regenerate-group): New function.
10550         (gnus-agent-regenerate): New function.
10551         (gnus-agent-save-alist): Sort.
10552         (gnus-agent-copy-nov-line): Test eobp.
10553         (gnus-agent-retrieve-headers): Erase buffer.
10554
10555 2002-01-10  ShengHuo ZHU  <zsh@cs.rochester.edu>
10556
10557         * mm-util.el (mm-charset-to-coding-system): Change charset to cs.
10558         From: Torsten Hilbrich <email@myrkr.in-berlin.de>
10559
10560         * gnus.el (gnus-agent-covered-methods): Move here.
10561         (gnus-online): New function.
10562         (gnus-agent-method-p): Move here.
10563
10564         * nnagent.el (nnagent-retrieve-headers): Check whether arts is
10565         nil. Remove articles-alist.
10566
10567         * gnus-start.el (gnus-get-unread-articles): Check online.
10568         (gnus-groups-to-gnus-format): Ditto.
10569         (gnus-active-to-gnus-format): Ditto.
10570
10571         * gnus-agent.el (gnus-agent-get-function): Use it.
10572         (gnus-agent-get-undownloaded-list): Ditto.
10573         (gnus-agent-fetch-session): Only fetch online methods.
10574
10575         * gnus-srvr.el (gnus-server-make-menu-bar): Add offline.
10576         (gnus-server-mode-map): Ditto.
10577         (gnus-server-offline-face): New face.
10578         (gnus-server-offline-face): New variable.
10579         (gnus-server-font-lock-keywords): Add offline.
10580         (gnus-server-insert-server-line): Ditto.
10581         (gnus-server-offline-server): New function.
10582
10583         * gnus-int.el (gnus-open-server): Turn to offline.
10584         (gnus-server-unopen-status): New variable.
10585
10586 2002-01-10  ShengHuo ZHU  <zsh@cs.rochester.edu>
10587
10588         * nnkiboze.el (nnkiboze-request-article): Use
10589         gnus-agent-request-article.
10590
10591         * nnagent.el (nnagent-retrieve-headers): Don't use nnml
10592         function. Insert undownloaded NOV.
10593
10594         * gnus-agent.el (gnus-agent-retrieve-headers): New function.
10595         (gnus-agent-request-article): New function.
10596
10597         * gnus.el (gnus-agent-cache): New variable.
10598
10599         * gnus-int.el (gnus-retrieve-headers): Use
10600         gnus-agent-retrieve-headers.
10601         (gnus-request-head): Use gnus-agent-request-article.
10602         (gnus-request-body): Ditto.
10603
10604         * gnus-art.el (gnus-request-article-this-buffer): Use
10605         gnus-agent-request-article.
10606
10607         * gnus-sum.el (gnus-summary-read-group-1): Don't show the first
10608         article if it is undownloaded.
10609
10610 2002-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10611
10612         * gnus-spec.el (gnus-spec-tab): Deal with wide characters.
10613
10614 2002-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10615
10616         * canlock.el (canlock-string-as-unibyte): New macro.
10617         (canlock-sha1-with-openssl): Return a unibyte string.
10618         (canlock-make-cancel-key): Treat Message-ID as a unibyte string.
10619
10620 2002-01-09  ShengHuo ZHU  <zsh@cs.rochester.edu>
10621
10622         * gnus.el (gnus-expand-group-parameters): Match \N or \& only.
10623
10624 2002-01-08  ShengHuo ZHU  <zsh@cs.rochester.edu>
10625
10626         * mm-encode.el (mm-content-transfer-encoding-defaults): Add
10627         application/x-emacs-lisp.
10628
10629         * gnus-msg.el (gnus-bug): Use application/emacs-lisp.
10630
10631         * nntp.el (nntp-request-article): Add group parameter.
10632         (nntp-request-head): Ditto.
10633         (nntp-find-group-and-number): Add parameter group. Figure out
10634         number if the status line doesn't give (e.g. quimby.gnus.org).
10635
10636 2002-01-08  Simon Josefsson  <jas@extundo.com>
10637
10638         * mml.el (mml-generate-mime-1): Set recipient correctly.
10639
10640 2002-01-08  ShengHuo ZHU  <zsh@cs.rochester.edu>
10641
10642         * message.el (message-read-from-minibuffer): Add parameter
10643         initial-contents.
10644         * gnus-msg.el (gnus-summary-resend-message): Use it.
10645
10646         * gnus-group.el (gnus-group-read-ephemeral-group): Restore the old
10647         behavior of quit-config.
10648
10649         * message.el (message-make-from): Don't quote fullname.
10650         From: Bj\e,Ax\e(Brn Mork <bmork@dod.no>
10651
10652         * gnus-group.el (gnus-group-suspend): Don't kill message buffers.
10653         From: <andre@slamdunknetworks.com>
10654
10655 2002-01-07  ShengHuo ZHU  <zsh@cs.rochester.edu>
10656
10657         * gnus-group.el (gnus-group-mark-article-read): Typo. Increase n.
10658
10659         * gnus-art.el (gnus-header-button-alist): Handle mailto.
10660
10661         * mml.el (mml-preview): Bind gnus-original-article-buffer because
10662         article-decode-group-name uses it.  Bind gnus-article-prepare-hook
10663         because bbdb may use it.
10664
10665 2002-01-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10666
10667         * nneething.el (nneething-request-article): When a non-text file
10668         is converted to an article, its data is encoded in base64.  Call
10669         `nneething-make-head' with options to specify MIME types.
10670         (nneething-make-head): Add optional arguments to specify MIME
10671         types.
10672
10673 2002-01-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
10674
10675         * gnus-fun.el (gnus-display-x-face-in-from): Fake a "From: "
10676         header if there is not.
10677
10678         * gnus-xmas.el (gnus-xmas-put-image): Insert " " if bobp.
10679
10680         * gnus-msg.el (gnus-gcc-mark-as-read): New variable.
10681         (gnus-inews-mark-gcc-as-read): Obsolete variable.
10682         (gnus-inews-do-gcc): Use them.
10683
10684         * gnus-group.el (gnus-group-mark-article-read): Put holes into
10685         gnus-newsgroup-unselected.
10686
10687 2002-01-06  Simon Josefsson  <jas@extundo.com>
10688
10689         * imap.el (imap-ssl-open, imap-ssl-open, imap-parse-fetch): Use
10690         condition-case, not ignore-errors.
10691
10692 2002-01-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
10693
10694         * gnus-sum.el (gnus-summary-insert-old-articles): Bind
10695         gnus-fetch-old-headers.
10696
10697         * gnus-art.el (article-display-x-face): Use the current buffer
10698         unless `W f'. Otherwise, X-Face may be shown in the header of a
10699         forwarded part.
10700         (gnus-treatment-function-alist): Treat xface before hiding
10701         headers.
10702
10703 2002-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10704
10705         * gnus-group.el (gnus-group-read-ephemeral-group): Fix
10706         parameters.
10707
10708 2002-01-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
10709
10710         * mm-util.el (mm-multibyte-p): Define conditionally when load.
10711         (mm-guess-charset): New function.
10712         (mm-charset-after): Use it.
10713         (mm-detect-coding-region): New function.
10714         (mm-detect-mime-charset-region): New function.
10715
10716         * gnus-sum.el (gnus-summary-show-article): Use
10717         mm-detect-coding-region.
10718
10719 2002-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10720
10721         * message.el (message-make-fqdn): Be less violent.
10722
10723         * gnus.el (gnus-logo-color-style): Compute custom form
10724         automatically.
10725
10726         * gnus-sum.el (gnus-summary-enter-digest-group): Feed the adaptive
10727         score file of the parent to the document group.
10728
10729         * gnus-group.el (gnus-group-read-ephemeral-group): Add an optional
10730         parameters parameter.
10731
10732         * gnus-score.el (gnus-score-load-file): Clean up.
10733
10734 2002-01-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
10735
10736         * gnus-sum.el (gnus-thread-sort-by-most-recent-number): Fix typo.
10737         From: Damien Wyart <damien.wyart@free.fr>
10738
10739         * gnus-util.el (gnus-local-map-property): In Emacs 21, use keymap.
10740
10741 2002-01-05  ShengHuo ZHU  <zsh@cs.rochester.edu>
10742
10743         * gnus-sum.el (gnus-select-group-hook): Typo.
10744
10745         * rfc2047.el (rfc2047-decode-string): Return immediately if there
10746         is no quoted-printable-encoded STRING.
10747         From: Jesper Harder <harder@ifa.au.dk>
10748
10749         (rfc2047-decode-string): Decode it.
10750
10751 2002-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10752
10753         * gnus.el (gnus-logo-color-alist): Added more colors from Luis.
10754
10755 2002-01-05  Keiichi Suzuki  <keiichi@nanap.org>
10756         Trivial patch.
10757
10758         * nntp.el (nntp-possibly-change-group): Erase contents of nntp
10759         buffer to get rid of junk line.
10760
10761 2002-01-05  Simon Josefsson  <jas@extundo.com>
10762
10763         * message.el (message-mode-map): Bind message-goto-from to C-c C-f
10764         C-o.
10765         (message-mode-map): Bind message-insert-or-toggle-importance to
10766         C-c C-u.
10767         (message-mode-map): Bind message-disposition-notification-to to
10768         C-c M-n.
10769         (message-mode-menu): Add m-d-n-t.
10770         (message-mode-field-menu): Add m-goto-from.
10771         (message-mode): Doc fix.
10772         (message-goto-from): New function.
10773         (message-insert-disposition-notification-to): New function.
10774         (message-tool-bar-map): Add receipt button.
10775
10776 2002-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10777
10778         * gnus-sum.el (gnus-thread-latest-date): New function.
10779         (gnus-thread-sort-by-most-recent-number): Renamed.
10780         (gnus-thread-sort-functions): Doc fix.
10781         (gnus-select-group-hook): Don't use setq on a hook.
10782         (gnus-thread-latest-date): Use date, not number
10783
10784         * gnus-agent.el (gnus-agent-expire-days): Doc fix.
10785         (gnus-agent-expire): Allow regexp of expire-days.
10786
10787         * gnus-art.el (gnus-article-reply-with-original): Deactivate
10788         region.
10789         (gnus-article-followup-with-original): Ditto.
10790
10791         * gnus-sum.el (gnus-thread-highest-number): Doc fix.
10792
10793         * gnus-art.el (gnus-mime-display-alternative): Use
10794         gnus-local-map-property.
10795         (gnus-mime-display-alternative): Ditto.
10796         (gnus-insert-mime-security-button): Ditto.
10797         (gnus-insert-next-page-button): Ditto.
10798         (gnus-button-prev-page): Take optional args.
10799         (gnus-insert-prev-page-button): widget-convert.
10800
10801         * gnus-util.el (gnus-local-map-property): New function.
10802
10803         * gnus-art.el (gnus-prev-page-map): Use parent map.
10804         (gnus-next-page-map): Ditto.
10805
10806         * gnus-spec.el (gnus-parse-format): Clean up.
10807         (gnus-parse-format): Do complex formatting for %=.
10808
10809         * gnus-fun.el (gnus-display-x-face-in-from): Add the string
10810         "X-Face: " to the data in the built-in scenario.
10811
10812         * gnus-spec.el (gnus-parse-simple-format): Use gnus-pad-form.
10813         (gnus-correct-pad-form): Renamed.
10814         (gnus-tilde-max-form): Clean up.
10815         (gnus-pad-form): Use gnus-use-correct-string-widths.
10816
10817         * gnus-fun.el (gnus-display-x-face-in-from): Use native xface
10818         support if that is available.
10819
10820         * gnus-sum.el (gnus-thread-highest-number): New function.
10821         (gnus-thread-sort-by-most-recent-thread): New function.
10822         (gnus-thread-sort-functions): Doc fix.
10823
10824 2002-01-04  ShengHuo ZHU  <zsh@cs.rochester.edu>
10825
10826         * gnus-sum.el (gnus-summary-select-article): Disable multibyte in
10827         all cases.
10828         (gnus-summary-mode): Enable it in all cases.
10829         (gnus-summary-display-article): Ditto.
10830         (gnus-summary-edit-article): Ditto.
10831
10832         * gnus-ems.el (gnus-put-image): Really return glyph.
10833
10834         * gnus-art.el (gnus-article-x-face-command): Fix :type.
10835         (gnus-treat-smiley): Don't take "P" in the interactive form.
10836
10837 2002-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10838
10839         * compface.el (uncompface): XEmacs and Emacs have differing
10840         capabilities.
10841
10842         * gnus-fun.el (gnus-display-x-face-in-from): Use face.
10843
10844         * gnus-ems.el (gnus-article-xface-ring-internal): Removed.
10845         (gnus-article-xface-ring-size): Removed.
10846         (gnus-article-display-xface): Removed.
10847         (gnus-remove-image): Cleaned up.
10848
10849         * gnus-xmas.el (gnus-xmas-create-image): Convert pbm to xbm.
10850         (gnus-xmas-create-image): Take pbm files.
10851         (gnus-x-face): Removed.
10852         (gnus-xmas-article-display-xface): Removed.
10853
10854         * gnus-fun.el (gnus-display-x-face-in-from): Bind
10855         default-enable-multibyte-characters.
10856
10857         * compface.el (uncompface): Doc fix.
10858
10859         * gnus-art.el (gnus-article-x-face-command): Use
10860         gnus-display-x-face-in-from.
10861
10862         * gnus-xmas.el (gnus-xmas-put-image): Return the image.
10863
10864         * gnus-ems.el (gnus-put-image): Return the image.
10865
10866         * gnus-fun.el (gnus-display-x-face-in-from): New function.
10867         (gnus-x-face): Moved here.
10868
10869 2002-01-04  ShengHuo ZHU  <zsh@cs.rochester.edu>
10870
10871         * gnus-xmas.el (gnus-xmas-put-image): Don't insert SPC or make
10872         invisible if string is nil.
10873         (gnus-xmas-article-display-xface): Use it.
10874
10875         * gnus-ems.el (gnus-put-image): Explicitly use SPC, and add text
10876         property when string is nil.
10877         (gnus-article-display-xface): Use it.
10878
10879 2002-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10880
10881         * gnus-art.el (article-display-x-face): Check whether valid grey
10882         face was returned.
10883         (article-display-x-face): Place image in the right spot.
10884
10885         * gnus-fun.el (gnus-convert-gray-x-face-to-xpm): Get rid of
10886         stderr.
10887         (gnus-convert-gray-x-face-to-xpm): Check whether output is valid.
10888
10889 2002-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10890
10891         * gnus-xmas.el (gnus-xmas-create-image): Take optional
10892         parameters.
10893         (gnus-xmas-put-image): Allow non-strings to be passed.
10894
10895         * gnus-art.el (article-display-x-face): Use optional parameters.
10896
10897         * gnus-ems.el (gnus-create-image): Take optional parameters.
10898
10899         * gnus-fun.el (gnus-convert-gray-x-face-to-xpm): Use uncompface.
10900
10901         * compface.el (compface-xbm-p): Removed.
10902
10903         * gnus-ems.el (gnus-article-compface-xbm): Removed.
10904         (gnus-article-display-xface): Use compface.
10905
10906         * compface.el: New file.
10907
10908         * gnus-fun.el (gnus-convert-pbm-to-x-face-command): Remove quotes.
10909         (gnus-convert-image-to-x-face-command): Ditto.
10910         (gnus-random-x-face): Quote argument.
10911         (gnus-x-face-from-file): Ditto.
10912
10913 2002-01-03  Paul Jarc  <prj@po.cwru.edu>
10914
10915         * nnmaildir.el (nnmaildir-request-expire-articles): evaluate
10916         the expire-group parameter once per article rather than once
10917         per group; bind `nnmaildir-article-file-name' and `article'
10918         for convenience.  Leave article alone when expire-group
10919         specifies the current group.
10920         (nnmaildir--update-nov): be more concurrency-friendly with
10921         temp file names.
10922
10923 2002-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10924
10925         * gnus-start.el (gnus-read-init-file): Cleaned up.
10926
10927 2002-01-03  Dave Love  <d.love@dl.ac.uk>
10928
10929         * gnus-start.el (gnus-startup-file-coding-system): Removed.
10930         (gnus-read-init-file): Don't use it.
10931
10932 2002-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10933
10934         * gnus-agent.el (gnus-agent-fetch-session): Run hook.
10935
10936 2002-01-03  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
10937
10938         * gnus-start.el (gnus-read-init-file): Don't force coding system
10939         for ~/.gnus.  From Dave Love <fx@gnu.org>.
10940
10941 2002-01-03  ShengHuo ZHU  <zsh@cs.rochester.edu>
10942
10943         * nntp.el (nntp-send-buffer): Use mm-with-unibyte-current-buffer.
10944         * nnspool.el (nnspool-request-post): Ditto.
10945
10946         * mm-util.el (mm-use-find-coding-systems-region): New variable.
10947         (mm-find-mime-charset-region): Use it.
10948
10949 2002-01-03  Per Abrahamsen  <abraham@dina.kvl.dk>
10950
10951         * gnus.el (gnus-summary-line-format): Added :link.
10952         * gnus-topic.el (gnus-topic-line-format): Ditto.
10953         * gnus-sum.el (gnus-summary-dummy-line-format): Ditto.
10954         * gnus-srvr.el (gnus-server-line-format): Ditto.
10955         * gnus-group.el (gnus-group-line-format): Ditto.
10956
10957         * gnus-sum.el (gnus-summary-make-menu-bar): Use correct syntax for
10958         :keys, it works on both Emacsen.
10959
10960 2002-01-03  ShengHuo ZHU  <zsh@cs.rochester.edu>
10961
10962         * mm-util.el (mm-charset-to-coding-system): Don't setq charset.
10963
10964 2002-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10965
10966         * gnus-msg.el (gnus-summary-send-map): Fix binding for very-wide.
10967
10968 2002-01-03  Reiner Steib  <reiner.steib@gmx.de>
10969
10970         * gnus-sum.el (gnus-summary-make-menu-bar): Menu bar entries for
10971         very wide reply.
10972
10973 2002-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10974
10975         * gnus-picon.el (gnus-picon-transform-address): Cache stuff.
10976         (gnus-picon-cache): New variable.
10977         (gnus-picon-transform-newsgroups): Cache stuff.
10978
10979         * gnus-art.el (gnus-article-reply-with-original): New command.
10980         (gnus-article-followup-with-original): New command.
10981
10982         * gnus-msg.el (gnus-copy-article-buffer): Take optional BEG and
10983         END parameters.
10984         (gnus-summary-followup): Take a list of list of articles.
10985         (gnus-inews-yank-articles): Allow lists of article/regions.
10986
10987         * gnus-art.el (gnus-article-read-summary-keys): `R' and `F' are no
10988         longer the usual commands.
10989
10990         * gnus-fun.el (gnus-convert-image-to-gray-x-face): Use pnmnoraw.
10991         (gnus-convert-gray-x-face-to-xpm): Don't use six parameters to
10992         shell-command-on-region.
10993
10994 2002-01-02  ShengHuo ZHU  <zsh@cs.rochester.edu>
10995
10996         * gnus-picon.el (gnus-picon-transform-newsgroups): Fix for the case
10997           "Newsgroups: rec.music.beatles.moderated, rec.music.beatles".
10998
10999 2002-01-03  Steve Youngs  <youngs@xemacs.org>
11000
11001         * gnus-sum.el (gnus-summary-make-menu-bar): XEmacs doesn't
11002         understand ':keys', wrap it in an featurep 'xemacs.
11003
11004 2002-01-02  ShengHuo ZHU  <zsh@cs.rochester.edu>
11005
11006         * gnus-ems.el (gnus-article-display-xface): Show xface in the
11007         order of headers (Actually, it is called in a reversed order). Add
11008         'gnus-image-text-deletable property.
11009         (gnus-remove-image): Remove text with such a property.
11010
11011         * gnus-xmas.el (gnus-xmas-article-display-xface): Don't use
11012         gnus-put-image.
11013
11014         * gnus-art.el (gnus-article-treat-fold-newsgroups): Replace ", *"
11015         with ", "
11016
11017 2002-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11018
11019         * gnus-fun.el (gnus-convert-gray-x-face-to-xpm): Renamed.
11020
11021         * gnus-art.el (gnus-ignored-headers): Hide all X-Faces.
11022         (article-display-x-face): Display grey X-Faces.
11023
11024         * gnus-fun.el (gnus-convert-gray-x-face-region): New function.
11025         (gnus-convert-gray-x-face-to-ppm): Ditto.
11026         (gnus-convert-image-to-gray-x-face): Ditto.
11027
11028         * gnus-sum.el (gnus-summary-make-menu-bar): Add a :keys to
11029         gnus-summary-show-raw-article.
11030
11031 2002-01-02  ShengHuo ZHU  <zsh@cs.rochester.edu>
11032
11033         Display picons in XEmacs without showing text.
11034
11035         * gnus-xmas.el (gnus-xmas-create-image): Don't use
11036         mm-create-image-xemacs to create xbm glyph, because it deletes
11037         temporary files.
11038         (gnus-xmas-put-image): Use end-glyph. Make text invisible.
11039         (gnus-xmas-remove-image): Make text visible, remove glyph.
11040
11041         * gnus-picon.el (gnus-picon-transform-newsgroups)
11042         (gnus-picon-transform-address): Insert spec backward, due to the
11043         incompatibility of gnus-xmas-put-image.
11044
11045 2002-01-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
11046
11047         * gnus-fun.el (gnus-convert-pbm-to-x-face-command): Doc fix.
11048
11049 2002-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11050
11051         * gnus.el: Doc fix.
11052
11053         * gnus-art.el: Doc fix.
11054
11055         * gnus-agent.el: Doc fix.
11056
11057 2002-01-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
11058
11059         * gnus-diary.el, gnus-delay.el: Fix copyright lines.
11060
11061 2002-01-01  Paul Jarc  <prj@po.cwru.edu>
11062
11063         * nnmaildir.el (nnmaildir--update-nov): automatically parse
11064         NOV data out of the message again if nnmail-extra-headers has
11065         changed.
11066
11067 2002-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11068
11069         * gnus-fun.el: New file.
11070         (gnus-convert-image-to-x-face-command): New variable.
11071         (gnus-insert-x-face): New function.
11072         (gnus-random-x-face): Renamed.
11073         (gnus-x-face-from-file): Renamed.
11074
11075         * gnus-art.el (gnus-body-boundary-delimiter): Changed default to
11076         "_".
11077         (gnus-body-boundary-delimiter): Typo fix.
11078
11079 2002-01-02  Simon Josefsson  <jas@extundo.com>
11080
11081         * gnus-art.el (gnus-article-treat-body-boundary): Handle nil.
11082         (gnus-body-boundary-delimiter): Fix type.
11083
11084 2002-01-01  Simon Josefsson  <jas@extundo.com>
11085
11086         * gnus-art.el (gnus-treat-buttonize, gnus-treat-buttonize-head)
11087         (gnus-treat-emphasize, gnus-treat-strip-cr)
11088         (gnus-treat-leading-whitespace, gnus-treat-hide-headers)
11089         (gnus-treat-hide-boring-headers, gnus-treat-hide-signature)
11090         (gnus-treat-fill-article, gnus-treat-hide-citation)
11091         (gnus-treat-hide-citation-maybe)
11092         (gnus-treat-strip-list-identifiers, gnus-treat-strip-pgp)
11093         (gnus-treat-strip-pem, gnus-treat-strip-banner)
11094         (gnus-treat-highlight-headers, gnus-treat-highlight-citation)
11095         (gnus-treat-date-ut, gnus-treat-date-local)
11096         (gnus-treat-date-english, gnus-treat-date-lapsed)
11097         (gnus-treat-date-original, gnus-treat-date-iso8601)
11098         (gnus-treat-date-user-defined, gnus-treat-strip-headers-in-body)
11099         (gnus-treat-strip-trailing-blank-lines)
11100         (gnus-treat-strip-leading-blank-lines)
11101         (gnus-treat-strip-multiple-blank-lines)
11102         (gnus-treat-unfold-headers, gnus-treat-fold-headers)
11103         (gnus-treat-fold-newsgroups, gnus-treat-overstrike)
11104         (gnus-treat-display-xface, gnus-treat-display-smileys)
11105         (gnus-treat-from-picon, gnus-treat-mail-picon)
11106         (gnus-treat-newsgroups-picon, gnus-treat-body-boundary)
11107         (gnus-treat-capitalize-sentences, gnus-treat-fill-long-lines)
11108         (gnus-treat-play-sounds, gnus-treat-translate)
11109         (gnus-treat-x-pgp-sig): Doc fix, add link to manual.
11110
11111         * gnus-art.el (gnus-body-boundary-delimiter): New variable.
11112         (gnus-article-treat-body-boundary): Use it.
11113
11114         * message.el (message-mode): Fix doc.
11115         (message-mode-menu): Fix names.
11116
11117 2002-01-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11118
11119         * gnus-sum.el (gnus-summary-first-subject): Really go to unseen
11120         articles.
11121
11122         * gnus-picon.el (gnus-picon-find-face): Search MISC for all types.
11123         (gnus-picon-transform-address): Search for unknown faces as well.
11124         (gnus-picon-find-face): Don't search "news" for MISC.
11125         (gnus-picon-user-directories): Changed default back to exclude
11126         "unknown".
11127
11128         * gnus-sum.el (gnus-summary-hide-all-threads): Reversed logic.
11129
11130         * gnus-picon.el (gnus-picon-find-face): Search through all
11131         databases.
11132         (gnus-picon-find-face): New implementation.
11133
11134         * gnus-topic.el (gnus-topic-goto-previous-topic): New command and
11135         keystroke.
11136         (gnus-topic-goto-next-topic): Ditto.
11137
11138         * gnus.el (gnus-summary-line-format): Changed default.
11139
11140         * nnmail.el (nnmail-extra-headers): Change default.
11141
11142         * gnus-sum.el (gnus-extra-headers): Change default.
11143
11144         * message.el (message-news-other-window): Changed "news" to
11145         "posting".
11146         (message-news-other-frame): Ditto.
11147         (message-do-send-housekeeping): Ditto.
11148
11149         * gnus-sum.el (gnus-summary-maybe-hide-threads): Use predicate
11150         function.
11151         (gnus-article-unread-p): New function.
11152         (gnus-article-unseen-p): New function.
11153         (gnus-dead-summary-mode-map): Typo.
11154
11155         * gnus-util.el (gnus-make-predicate): New function.
11156         (gnus-make-predicate-1): New function.
11157
11158         * gnus-sum.el: New function.
11159         (gnus-map-articles): New function.
11160
11161         * gnus-art.el (gnus-treat-fold-headers): New variable.
11162         (gnus-article-treat-fold-headers): New command and keystroke.
11163
11164         * gnus-sum.el (gnus-dead-summary-mode-map): Clean up.
11165         (gnus-dead-summary-mode-map): Bind q to bury-buffer.
11166
11167 2002-01-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
11168
11169         * message.el (message-fcc-externalize-attachments): New variable.
11170         (message-do-fcc): Use it.
11171
11172         * gnus-msg.el (gnus-gcc-externalize-attachments): New variable.
11173         (gnus-inews-do-gcc): Use it.
11174
11175         * mml.el (mml-tweak-sexp-alist): New variable.
11176         (mml-externalize-attachments): New variable.
11177         (mml-tweak-part): Use mml-tweak-sexp-alist.
11178         (mml-tweak-externalize-attachments): New function.
11179
11180 2002-01-01  Steve Youngs  <youngs@xemacs.org>
11181
11182         * gnus-xmas.el (gnus-xmas-article-display-xface): Uncomment
11183         'set-glyph-face' so x-face back/foreground can be set.
11184
11185 2001-12-31  ShengHuo ZHU  <zsh@cs.rochester.edu>
11186
11187         * message.el (message-fix-before-sending): Fix a typo.
11188
11189 2002-01-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11190
11191         * gnus-art.el (gnus-treat-smiley): Renamed command.
11192         (gnus-article-remove-images): New command and keystroke.
11193
11194         * gnus-sum.el (gnus-summary-toggle-smiley): Removed.
11195
11196         * smiley-ems.el (gnus-smiley-display): Removed.
11197
11198         * gnus.el (gnus-version-number): Update version.
11199
11200         * message.el (message-text-with-property): Renamed and moved
11201         here.
11202         (message-fix-before-sending): Highlight invisible text and place
11203         point there.
11204
11205 2002-01-01 02:32:53 Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11206
11207         * gnus.el: Oort Gnus v0.04 is released.
11208
11209 2002-01-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11210
11211         * gnus-delay.el (gnus-delay-send-queue): Renamed.
11212
11213         * gnus-art.el (gnus-ignored-headers): More headers,
11214
11215         * ietf-drums.el (ietf-drums-parse-addresses): Use `error' instead
11216         of `scan-error', since XEmacs doesn't seem to support that.
11217
11218 2001-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11219
11220         * gnus-sum.el (gnus-summary-best-unread-article): Take a prefix
11221         arg.
11222         (gnus-summary-best-unread-subject): Ditto.
11223         (gnus-summary-best-unread-subject): No, don't.
11224         (gnus-summary-better-unread-subject): New command.
11225
11226         * gnus-xmas.el (gnus-xmas-put-image): Insert the string itself.
11227
11228         * lpath.el ((featurep 'xemacs)): fbind url function.
11229
11230         * gnus-xmas.el (gnus-xmas-article-display-xface): Use data, not
11231         buffer.
11232         (gnus-xmas-remove-image): Implementation that does something.
11233         (gnus-xmas-article-display-xface): Mark images properly.
11234
11235         * gnus-art.el (gnus-mime-print-part): Use mm-temp-directory.
11236
11237 2001-12-31  Florian Weimer  <fw@deneb.enyo.de>
11238
11239         * gnus.el (gnus): Warn if trying to run Gnus un-byte-compiled.
11240
11241 2001-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11242
11243         * gnus-group.el (gnus-group-line-format): Added %O to the default
11244         value.
11245
11246         * gnus-util.el (gnus-text-with-property): The smallest point is
11247         point-min.
11248
11249         * smiley-ems.el (smiley-region): Return images.
11250         (gnus-smiley-display): Allow toggling.
11251         (smiley-region): Use text properties, not overlays.
11252
11253         * gnus-xmas.el (gnus-xmas-remove-image): New function, not
11254         implemented yet.
11255
11256         * smiley-ems.el (smiley-update-cache): Check for valid types.
11257
11258         * gnus-art.el (gnus-with-article-buffer): New macro.
11259
11260         * gnus-picon.el (gnus-picon-transform-newsgroups): Keep the
11261         strings as well as the glyphs.
11262         (gnus-picon-transform-address): Ditto.
11263         (gnus-picon-insert-glyph): Ditto.
11264         (gnus-picon-transform-newsgroups): Toggle.
11265         (gnus-picon-transform-address): Toggle.
11266
11267         * gnus-ems.el (gnus-remove-image): New function.
11268         (gnus-put-image): Take an optional string.
11269
11270         * gnus-util.el (gnus-text-with-property): New function.
11271
11272         * gnus-art.el (gnus-delete-images): New function.
11273
11274         * gnus-ems.el (gnus-article-display-xface): Mark and store image.
11275
11276         * gnus-art.el (gnus-article-wash-status-entry): Renamed.
11277         (gnus-article-wash-status): Use it.
11278         (gnus-signature-toggle): Clean up.
11279         (gnus-add-wash-status): New function.
11280         (gnus-delete-wash-status): New function.
11281         (gnus-article-hide-text-type): Use them throughout.
11282         (gnus-add-image): New function.
11283
11284         * gnus-ems.el (gnus-article-display-xface): Use new interface.
11285
11286         * gnus-xmas.el (gnus-xmas-article-display-xface): Use new
11287         interface.
11288
11289         * gnus-art.el (article-display-x-face): Cleaned up.
11290
11291         * rfc2047.el (rfc2047-field-value): New function.
11292
11293         * mail-parse.el (mail-header-field-value): New alias.
11294
11295         * gnus-art.el (gnus-mime-print-part): Fix typos.
11296
11297         * smiley-ems.el (gnus-smiley-file-types): New variable.
11298         (smiley-update-cache): Use it.
11299         (smiley-regexp-alist): Suffix-less smiley names.
11300         (smiley-regexp-alist): Added more smileys.
11301
11302         * gnus-sum.el (gnus-print-buffer): Made into own function.
11303         (gnus-summary-print-article): Use it.
11304
11305         * mailcap.el (mailcap-mime-info): Actually return the bit that we
11306         looked for when REQUEST is a string.
11307
11308         * gnus-art.el (gnus-mime-button-commands): Add printing
11309         keystroke.
11310         (gnus-mime-copy-part): Doc fix.
11311         (gnus-mime-print-part): New command.
11312
11313 2001-12-31  Simon Josefsson  <jas@extundo.com>
11314
11315         * imap.el (imap-parse-fetch): Notice empty flags responses.  From
11316         Nic Ferrier <nferrier@tf1.tapsellferrier.co.uk>.
11317
11318 2001-12-30  ShengHuo ZHU  <zsh@cs.rochester.edu>
11319
11320         * gnus-picon.el (gnus-treat-from-picon): Autoload.
11321         (picon): Fix doc.
11322
11323         * gnus-win.el (gnus-window-to-buffer): gnus-picon-buffer-name no
11324         longer exists. Remove those codes.
11325         * gnus.el (gnus-use-picons): Ditto.
11326
11327 2001-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11328
11329         * gnus-art.el (gnus-article-treat-fold-newsgroups): Don't
11330         infloop.
11331
11332         * gnus-sum.el (t): New `W D' map.
11333
11334         * gnus-art.el (gnus-treat-fold-newsgroups): New variable.
11335         (gnus-article-treat-body-boundary): Clean up.
11336         (gnus-body-boundary-face): Removed.
11337         (gnus-article-goto-header): Moved here.
11338         (gnus-article-goto-header): Allow better regexps.
11339         (gnus-article-treat-fold-newsgroups): New command.
11340
11341         * gnus-sum.el (gnus-summary-move-article): We have to select an
11342         article to give `gnus-read-move-group-name' an opportunity to
11343         suggest an appropriate default.
11344
11345         * rfc2047.el (rfc2047-fold-line): New function.
11346         (rfc2047-unfold-line): Ditto.
11347         (rfc2047-fold-region): Don't fold just after the header name.
11348
11349         * mail-parse.el (mail-header-fold-line): New alias.
11350         (mail-header-unfold-line): Ditto.
11351
11352         * gnus-art.el (gnus-body-boundary-face): Renamed.
11353         (gnus-article-treat-body-boundary): Use it.
11354         (gnus-article-treat-body-boundary): Use an invisible header and a
11355         line of underline characters.
11356
11357 2001-12-30  ShengHuo ZHU  <zsh@cs.rochester.edu>
11358
11359         * ietf-drums.el (ietf-drums-parse-addresses): Recover from errors.
11360
11361         * gnus-picon.el (gnus-picon-transform-address): Skip bad addresses.
11362         (gnus-picon-split-address): New function.
11363         (gnus-picon-find-face): Use it.
11364         (gnus-picon-transform-address): Use it. Set first to t for each
11365         address.
11366
11367         * gnus-art.el (gnus-with-article-headers): Move to here. Define
11368         the macro then use it.
11369         (gnus-treatment-function-alist): Treat picons earlier.
11370
11371 2001-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11372
11373         * gnus-art.el (gnus-body-separator-face): New variable.
11374         (gnus-article-treat-body-boundary): Use a blank, colored line.
11375
11376         * gnus-picon.el (gnus-picon-find-face): Look into misc/MISC as
11377         well.
11378
11379         * gnus-art.el (gnus-treat-body-boundary): New variable.
11380         (gnus-article-treat-unfold-headers): Use helper macro.
11381         (gnus-article-treat-body-boundary): New command.
11382
11383         * gnus.el (gnus-logo-color-style): Change the default color.
11384         (gnus-splash-face): Gray, gray.
11385
11386         * gnus-xmas.el (gnus-xmas-group-startup-message): Use general
11387         colors.
11388
11389         * gnus.el (gnus-logo-color-alist): Moved here and renamed.
11390         (gnus-logo-color-style): Ditto.
11391         (gnus-logo-colors): Ditto.
11392
11393         * gnus-picon.el (gnus-picon-create-glyph): Cache glyphs.
11394
11395         * gnus-art.el (gnus-treat-newsgroups-picon): New variable.
11396
11397         * gnus-picon.el (gnus-treat-newsgroups-picon): New function.
11398         (gnus-picon-transform-newsgroups): New function.
11399
11400         * ietf-drums.el (ietf-drums-parse-addresses): Accept a nil
11401         string.
11402
11403         * gnus-picon.el (gnus-treat-mail-picon): Renamed.
11404
11405         * gnus-art.el (gnus-treat-cc-picon): New variable.
11406         (gnus-treat-mail-picon): Renamed.
11407
11408         * gnus-picon.el: New implementation.
11409         (gnus-picon-find-face): Renamed.
11410         (gnus-treat-from-picon): Use it.
11411         (gnus-picon-transform-address): Renamed.
11412         (gnus-treat-from-picon): Use it.
11413         (gnus-picon-create-glyph): Renamed.
11414         (gnus-picon-transform-address): Use it.
11415         (gnus-treat-cc-picon): New command.
11416
11417         * mm-decode.el (mm-create-image-xemacs): Separated out into
11418         function.
11419         (mm-get-image): Use it.
11420
11421         * gnus-art.el (gnus-treat-display-picons): Simplify.
11422         (gnus-treat-from-picon): Renamed.
11423
11424         * gnus-ems.el (gnus-create-image): New function.
11425         (gnus-put-image): New function.
11426
11427         * gnus-art.el (gnus-article-treat-unfold-headers): Doc fix.
11428         (gnus-with-article-headers): New macro.
11429         (gnus-article-goto-header): New function.
11430
11431         * gnus-xmas.el (gnus-image-type-available-p): New function.
11432
11433         * gnus-ems.el (gnus-image-type-available-p): New function.
11434
11435 2001-12-30  ShengHuo ZHU  <zsh@cs.rochester.edu>
11436
11437         * nnrss.el (nnrss-check-group): Find the correct tag, because
11438         xml.el is changed.
11439
11440 2001-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11441
11442         * gnus-art.el (gnus-article-treat-unfold-headers): Only fold when
11443         lines are shorter than the window width.
11444         (gnus-ignored-headers): More headers.
11445
11446 2001-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11447
11448         * gnus-art.el (gnus-treat-unfold-lines): New variable.
11449         (gnus-treat-unfold-headers): Renamed.
11450         (gnus-article-treat-unfold-headers): New command and keystroke.
11451
11452         * rfc2047.el (rfc2047-encode-message-header): Clean up.
11453
11454         * gnus-int.el (gnus-open-server): Mark quit-ed server as denied.
11455
11456 2001-12-29  ShengHuo ZHU  <zsh@cs.rochester.edu>
11457
11458         * sha1-el.el (sha1-use-external): New variable.
11459         (sha1-region): Use it.
11460         (sha1-string): Ditto.
11461
11462         * dgnushack.el (dgnushack-compile): Compile gnus-picon for Emacs.
11463         * gnus-picon.el: Less warnings when compile.
11464
11465 2001-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11466
11467         * gnus-picon.el (gnus-picons-news-directories): Removed obsolete
11468         alias.
11469         (gnus-picons-database): Default to list.
11470         (gnus-picons-lookup-internal): Use it.
11471
11472         * nnmail.el (nnmail-article-group): Default nnmail-split-methods
11473         to "bogus".
11474
11475         * gnus-win.el (gnus-configure-windows-hook): New hook.
11476
11477 2001-12-29  Sascha L\e,A|\e(Bdecke  <sascha@meta-x.de>
11478
11479         * gnus-win.el (gnus-configure-windows): Minimize tree buffer.
11480
11481 2001-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11482
11483         * gnus-sum.el (gnus-update-marks): Don't uncompress the seen
11484         lists.
11485         (gnus-select-newsgroup): Don't append; push.
11486         (gnus-adjust-marked-articles): Remove obsolete ranges from
11487         `seen'.
11488         (gnus-update-marks): Clean up.
11489         (gnus-select-newsgroup): Don't stomp gnus-newsgroup-seen.
11490
11491 2001-12-29  Frank Schmitt  <usereplyto@Frank-Schmitt.net>
11492
11493         * gnus-sum.el (gnus-summary-limit-to-age): Allow negative days.
11494
11495 2001-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11496
11497         * gnus-sum.el (gnus-auto-select-subject): New variable.
11498         (gnus-summary-best-unread-subject): New function.
11499         (gnus-summary-best-unread-article): Use it.
11500         (gnus-summary-first-unseen-subject): New function and command.
11501
11502         * gnus-art.el (gnus-treatment-function-alist): Emphasize after
11503         other treatments.
11504
11505         * gnus-util.el (gnus-put-overlay-excluding-newlines): New
11506         function.
11507
11508         * gnus-art.el (gnus-article-show-hidden-text): Remove the type
11509         from the list of hidden types.
11510
11511         * mm-view.el (mm-inline-text): Ditto.
11512         (mm-inline-text): Ditto.
11513         (mm-w3-prepare-buffer): Ditto.
11514
11515         * gnus-art.el (article-wash-html): Inhibit more remote fetching.
11516
11517 2001-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11518
11519         * gnus-art.el (gnus-ignored-headers): Added more headers.
11520
11521 2001-12-29  Jesper Harder  <harder@ifa.au.dk>
11522
11523         * gnus-srvr.el (gnus-browse-foreign-server): Compute the prefix
11524         once.
11525
11526 2001-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11527
11528         * gnus-srvr.el (gnus-server-browse-in-group-buffer): Doc fix.
11529
11530 2001-12-28  Simon Josefsson  <jas@extundo.com>
11531
11532         * gnus-srvr.el (gnus-browse-foreign-server): Fix typo.  From
11533         Jesper Harder <harder@ifa.au.dk>.
11534
11535 2001-12-27  Simon Josefsson  <jas@extundo.com>
11536
11537         * gnus-sum.el (gnus-select-newsgroup): Make
11538         `gnus-newsgroup-unseen' sorted.  Make `gnus-newsgroup-unseen'
11539         contain all articles (instead of none) when no seen marks have
11540         been set for the group.
11541         (gnus-update-marks): Use `gnus-range-add' on a uncompressed list
11542         instead, it seems to result in shorter ranges.
11543
11544 2001-12-26 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11545
11546         * mm-util.el (mm-iso-8859-x-to-15-region): Use
11547         insert-before-markers.
11548         From Jesper Harder <harder@ifa.au.dk>
11549
11550 2001-12-26  Paul Jarc  <prj@po.cwru.edu>
11551
11552         * nnmaildir.el (nnmaildir-save-mail): create the destination
11553         groups if they do not exist.
11554
11555 2001-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11556
11557         * canlock.el (canlock-sha1-with-openssl): Remove unused variable.
11558
11559 2001-12-22 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11560
11561         * gnus-group.el (gnus-group-read-ephemeral-group): Call
11562         gnus-group-real-name.
11563
11564         * gnus-sum.el (gnus-decode-encoded-word-methods): Backslash paren.
11565         (gnus-newsgroup-variables): Ditto.
11566
11567         * gnus.el (gnus-group-prefixed-name): If group name is prefixed,
11568         return it.
11569
11570 2001-12-21  Paul Jarc  <prj@po.cwru.edu>
11571
11572         * gnus.el (gnus-valid-select-methods): Include nnmaildir.
11573         * nnmaildir.el (top-level): Add commentary.
11574         (nnmaildir-version): Indicate that nnmaildir is now a standard
11575         part of Gnus, not separately released.
11576
11577 2001-12-21 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11578
11579         * gnus-art.el, gnus-picon.el, gnus-sieve.el, gnus-sum.el:
11580         * gnus-xmas.el, imap.el, mailcap.el, mm-util.el, nnfolder.el:
11581         * nnheader.el, nnmail.el: Nil/NIL vs. nil.
11582         From  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
11583
11584 2001-12-20 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11585
11586         * nnmaildir.el: Copyright changes. Require cl only at compile time.
11587
11588 2001-12-20  Simon Josefsson  <jas@extundo.com>
11589
11590         * nnimap.el (top-level): Don't require cl.  Suggested by ShengHuo
11591         ZHU <zsh@cs.rochester.edu>.
11592         (nnimap-close-group): Don't quote KEYLIST items.  Suggested by
11593         Brian P Templeton <bpt@tunes.org>.
11594
11595 2001-12-19 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11596
11597         * nnmaildir.el: New file.
11598         From Paul Jarc <prj@po.cwru.edu>.
11599
11600 2001-12-19 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11601
11602         * nndoc.el (nndoc-type-alist): Move forward to the end.
11603
11604 2001-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11605
11606         * gnus.el (gnus-find-subscribed-addresses): Replace `mapc' with
11607         `dolist'.
11608
11609 2001-12-19 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11610
11611         * gnus-win.el (gnus-frames-on-display-list): New function.
11612         (gnus-get-buffer-window): Use it.
11613
11614 2001-12-19 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11615
11616         * nnwarchive.el (nnwarchive-mail-archive-xover): Fix the regexp.
11617
11618 2001-12-18 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11619
11620         * gnus-win.el (gnus-get-buffer-window): Use gnus-delete-if.
11621
11622 2001-12-18 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11623            From Harald Meland <Harald.Meland@usit.uio.no>
11624
11625         * gnus-win.el (gnus-get-buffer-window): New function.
11626         (gnus-all-windows-visible-p): Use it.
11627
11628         * gnus-util.el (gnus-horizontal-recenter)
11629         (gnus-horizontal-recenter, gnus-horizontal-recenter)
11630         (gnus-horizontal-recenter, gnus-set-window-start): Use it.
11631
11632         * gnus-score.el (gnus-score-insert-help): Use it.
11633
11634         * gnus-salt.el (gnus-tree-recenter, gnus-generate-tree)
11635         (gnus-generate-tree, gnus-highlight-selected-tree)
11636         (gnus-highlight-selected-tree, gnus-tree-highlight-article): Use
11637         it.
11638
11639         * gnus-art.el (gnus-article-set-window-start)
11640         (gnus-mm-display-part, gnus-request-article-this-buffer)
11641         (gnus-button-next-page, gnus-button-prev-page)
11642         (gnus-article-button-next-page, gnus-article-button-prev-page):
11643         Use it.
11644
11645 2001-12-18  Josh Huber  <huber@alum.wpi.edu>
11646
11647         * ChangeLog, ChangeLog.1, nnwfm.el, smiley.el:
11648         * gnus-cite.el, gnus-delay.el, gnus-spec.el, message.el:
11649         * mml1991.el, nnultimate.el: Removed buffer-file-coding-system tag.
11650
11651 2001-12-18 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11652
11653         * ChangeLog,  ChangeLog.1, nnwfm.el,  gnus-smiley.el:
11654         * gnus-cite.el, gnus-delay.el, gnus-spec.el, message.el:
11655         * mml1991.el, nnultimate.el: Add `coding'.
11656
11657 2001-12-17  Josh Huber  <huber@alum.wpi.edu>
11658
11659         * ChangeLog: changed coding to buffer-file-coding-system
11660         * ChangeLog.1: same
11661         * nnwfm.el: same
11662         * gnus-smiley.el: same
11663         * gnus-cite.el: moved -*- magic cookie -*- to Local Variables
11664         * gnus-delay.el: same
11665         * gnus-spec.el: same
11666         * message.el: same
11667         * mml1991.el: same
11668         * nnultimate.el: same
11669
11670 2001-12-16  Simon Josefsson  <jas@extundo.com>
11671         Inspired by code by Dirk Meyer <dischi@tzi.de>.
11672
11673         * gnus-sum.el (gnus-summary-muttprint-program): New variable.
11674         (gnus-summary-save-map): Add muttprint.
11675         (gnus-summary-make-menu-bar): Ditto.
11676         (gnus-summary-muttprint): New function.
11677
11678         * gnus-art.el (gnus-summary-pipe-to-muttprint): New function.
11679
11680 2001-12-14 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11681
11682         * uudecode.el (uudecode-decode-region-internal): Speedup by using
11683         temporary list instead of buffer.
11684
11685         * mm-url.el (executable-find): autoload.
11686
11687 2001-12-12  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
11688
11689         * gnus-mlspl.el (gnus-group-split-fancy): Doc fix (add reference
11690         to variable, follow doc-string conventions).
11691
11692 2001-12-13  Josh Huber  <huber@alum.wpi.edu>
11693
11694         * gnus-cus.el (gnus-extra-topic-parameters): added topic parameter
11695         subscribe-level
11696         * gnus-topic.el (gnus-subscribe-topics): use it.
11697
11698 2001-12-13 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11699
11700         * gnus-msg.el (gnus-summary-mail-forward): Forward all marked
11701         messages. (A small patch with indentation)
11702         From Sean Neakums <sneakums@zork.net>.
11703
11704         * gnus-uu.el (gnus-uu-grab-articles): Set gnus-current-article to
11705         nil after shooting down the gnus-original-article-buffer.
11706
11707 2001-12-13 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11708
11709         * uudecode.el (uudecode-use-external): New variable.
11710         (uudecode-decode-region): Automatically detect external program.
11711
11712         * binhex.el (binhex-use-external): New variable.
11713         (binhex-decode-region-internal): New function.
11714         (binhex-decode-region): Automatically detect external program.
11715
11716         * mm-uu.el (mm-uu-decode-function,mm-uu-binhex-decode-function):
11717         Use them.
11718
11719 2001-12-12  Simon Josefsson  <jas@extundo.com>
11720
11721         * nnvirtual.el (nnvirtual-always-rescan)
11722         (nnvirtual-component-regexp): Fix doc.
11723
11724         * nnoo.el (defvoo): Add doc to defvoo variables.
11725
11726         * nnml.el (nnml-directory, nnml-active-file)
11727         (nnml-newsgroups-file, nnml-get-new-mail, nnml-nov-is-evil)
11728         (nnml-marks-is-evil, nnml-filenames-are-evil)
11729         (nnml-prepare-save-mail-hook, nnml-inhibit-expiry): Fix doc.
11730
11731         * nnmh.el (nnmh-directory, nnmh-get-new-mail)
11732         (nnmh-prepare-save-mail-hook, nnmh-be-safe): Fix doc.
11733         (nnmh-possibly-change-directory): Use `nnheader-report' instead of
11734         `error'.
11735
11736         * nnmbox.el (nnmbox-mbox-file, nnmbox-active-file)
11737         (nnmbox-get-new-mail, nnmbox-prepare-save-mail-hook):
11738
11739         * nnfolder.el (nnfolder-directory, nnfolder-active-file)
11740         (nnfolder-newsgroups-file, nnfolder-get-new-mail)
11741         (nnfolder-save-buffer-hook, nnfolder-inhibit-expiry)
11742         (nnfolder-nov-is-evil, nnfolder-marks-is-evil): Fix doc.
11743
11744         * nnbabyl.el (nnbabyl-mbox-file, nnbabyl-active-file)
11745         (nnbabyl-get-new-mail, nnbabyl-prepare-save-mail-hook): Fix doc.
11746
11747         * imap.el, nnimap.el: Fix indentation.
11748
11749         * gnus-sieve.el (gnus-sieve-article-add-rule): Autoload it.
11750
11751 2001-12-12  Didier Verna  <didier@xemacs.org>
11752
11753         * gnus-msg.el (gnus-group-news): New function.
11754         * gnus-group.el (gnus-group-mode-map): bind it to `i'.
11755         * gnus-group.el (gnus-group-make-menu-bar): add a menu item for it.
11756         * gnus-salt.el (gnus-carpal-group-buffer-buttons): add a button
11757         for it.
11758         * gnus-msg.el (gnus-summary-news-other-window): New function.
11759         * gnus-msg.el ((gnus-summary-send-map "S" gnus-summary-mode-map)):
11760         bind it to `i'.
11761         * gnus-sum.el (gnus-summary-mode-map): bind it to `i'.
11762         * gnus-sum.el (gnus-summary-make-menu-bar): add a menu item for it.
11763         * gnus-salt.el (gnus-carpal-summary-buffer-buttons): add a button
11764         for it (called with a prefix).
11765         * gnus-msg.el (gnus-configure-posting-styles): add an optional
11766         group-name argument.
11767         * gnus-msg.el (gnus-setup-message): use it.
11768
11769 2001-12-12 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11770
11771         * gnus-sum.el (gnus-summary-show-article): Fix doc.
11772
11773 2001-12-10 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11774
11775         * mml.el (mime-to-mml): Remove Content-Disposition too.
11776
11777 2001-12-09 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11778
11779         * gnus-sum.el (gnus-summary-buffer-name): Decode group name.
11780         * gnus-group.el (gnus-group-name-decode): Decode unibyte
11781         strings only.
11782         From TSUCHIYA Masatoshi <tsuchiya@namazu.org>
11783
11784 2001-12-08  Nevin Kapur  <nevin@jhu.edu>
11785
11786         * nnmail.el (nnmail-fancy-expiry-targets): New variable.
11787         (nnmail-fancy-expiry-target): Use it.
11788         Suggestions from Simon Josefsson <jas@extundo.com>.
11789
11790 2001-12-07 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11791
11792         * gnus-sum.el (gnus-summary-show-article): Recount lines if not exist.
11793
11794 2001-12-07 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11795
11796         * nnwfm.el (nnwfm-create-mapping): Use gnus-url-unhex-string.
11797
11798         * gnus-util.el (gnus-url-unhex-string): Move here.
11799
11800 2001-12-07 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11801
11802         * nnrss.el (nnrss-decode-entities-unibyte-string): Use
11803         mm-url-decode-entities-nbsp.
11804
11805         * nnlistserv.el, nnultimate.el, nnwarchive.el, nnweb.el:
11806         * webmail.el, nnwfm.el: Use mm-url.
11807
11808         * mm-url.el (mm-url-fetch-form): Move from nnweb.
11809         (mm-url-remove-markup): Move from nnweb.
11810         (mm-url-fetch-simple): Move from webmail.
11811
11812         * nnslashdot.el (nnslashdot-request-post): Use mm-url-fetch-form.
11813
11814 2001-12-07 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11815
11816         * gnus-sum.el (gnus-summary-print-truncate-and-quote): New function.
11817         (gnus-summary-print-article): Use it.
11818
11819         * gnus-util.el (gnus-replace-in-string): Typo.
11820
11821 2001-12-06 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11822
11823         * nnweb.el (nnweb-replace-in-string): Removed.
11824
11825         * gnus-util.el (gnus-replace-in-string): New function.
11826         (gnus-mode-string-quote): Use it.
11827
11828         * nnrss.el (nnrss-format-string): Use gnus-replace-in-string.
11829         * nnwfm.el (nnwfm-create-mapping): Ditto.
11830
11831 2001-12-06 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11832
11833         * dgnushack.el (dgnushack-compile): nnrss.el and
11834         nnslashdot.el don't depend on nnweb, url, w3.
11835
11836         * nnrss.el: Use mm-url.
11837
11838 2001-12-06 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11839
11840         * mm-url.el (mm-url-insert-file-contents): Support file:.
11841
11842 2001-12-05 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11843
11844         * mm-view.el: Lower case for the description line. Sync from the
11845         Emacs CVS.
11846
11847 2001-12-05 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11848
11849         * gnus-group.el (gnus-group-find-new-groups): Fix doc.
11850         From:  Stefan Monnier  <monnier@cs.yale.edu>
11851
11852 2001-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
11853
11854         * mm-view.wl (mm-inline-text): Decode a charset-encoded rich text.
11855
11856 2001-12-04 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11857
11858         * mm-url.el: Require executable.
11859         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
11860
11861 2001-12-03 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11862
11863         * pop3.el (pop3-munge-message-separator): Only use valid date.
11864         Trivial patch from Michael Welsh Duggan <md5i@cs.cmu.edu>.
11865
11866         * Makefile.in: gnus-load.elc may not be generated.
11867
11868 2001-12-03 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11869
11870         * mm-url.el: New file.
11871         * nnslashdot.el: Use it.
11872         * mm-extern.el (mm-extern-url): Use it.
11873
11874 2001-12-01 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11875
11876         * gnus-sum.el (gnus-summary-save-article): Nix
11877         gnus-display-mime-function and gnus-article-prepare-hook.
11878
11879         * gnus-spec.el (gnus-parse-complex-format): Properly handle %C at
11880         the beginning of lines.
11881         (gnus-complex-form-to-spec): Ditto.
11882
11883 2001-12-01 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11884
11885         * message.el (message-make-mft): Fix the m-s-a-file regexp.
11886         From Paul Jarc <prj@po.cwru.edu>.
11887
11888 2001-11-30 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11889
11890         * message.el: New variable message-subscribed-address-file;
11891         use it in message-make-mft.  From Paul Jarc <prj@po.cwru.edu>.
11892
11893 2001-11-30 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11894
11895         * message.el (message-tab-body-function): Set to nil.
11896         (message-tab): Use text-mode-map or global-map.
11897         Suggested by Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
11898
11899 2001-11-30  Simon Josefsson  <jas@extundo.com>
11900
11901         * gnus-agent.el (gnus-agent-fetch-headers): Use gnus-range-add
11902         instead of gnus-union, for speed.  Suggested by Christoph Conrad
11903         <christoph.conrad@gmx.de>.
11904         (gnus-agent-fetch-group-1): Add verbose message.
11905
11906 2001-11-29 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11907
11908         * gnus-agent.el (gnus-agent-write-active): Make sure sym is a cons
11909         of integers.
11910
11911 2001-11-29  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
11912
11913         * message.el (message-newgroups-header-regexp)
11914         (message-completion-alist, message-tab-body-function): Use
11915         defcustom rather than defvar.
11916         (message-tab): Mention `message-tab-body-function' in doc.
11917         Suggested by Karl Eichwalder.
11918
11919 2001-11-28 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11920
11921         * gnus-uu.el (gnus-uu-save-article): Use #part instead of #mml.
11922
11923 2001-11-28 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11924
11925         * nnheader.el (nnheader-find-nov-line): Don't use macro
11926         gnus-delete-line.
11927
11928         * gnus-group.el (gnus-group-name-decode): Defun instead of defsubst.
11929         (gnus-group-name-charset): Ditto.
11930
11931         * gnus-util.el (gnus-buffer-live-p): Ditto.
11932
11933 2001-11-28 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11934
11935         * sieve-manage.el (sieve-manage-stream-alist): Backslash before
11936         open parenthesis in doc.
11937         (sieve-manage-authenticator-alist): Typo in doc.
11938         * imap.el (imap-authenticator-alist): Typo in doc.
11939         (imap-stream-alist): Backslash.
11940
11941         * gnus-sum.el (gnus-summary-limit-to-author): Missing arguments.
11942           Thanks to david.goldberg6@verizon.net (David S. Goldberg)
11943
11944 2001-11-27 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11945
11946         * gnus-topic.el (gnus-topic-mode): Add LOCAL for add-hook.
11947
11948         * message.el (message-mode): make-local-hook is harmless in Emacs 21.
11949
11950         * gnus-msg.el (gnus-configure-posting-styles): use
11951         make-local-hook. Add LOCAL for add-hook.
11952
11953 2001-11-27  Per Abrahamsen  <abraham@dina.kvl.dk>
11954
11955         * message.el (message-mode): Use `make-local-hook' unless
11956         obsolete.
11957         Patch by Katsumi Yamaoka <yamaoka@jpl.org>.
11958
11959 2001-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11960
11961         * canlock.el: Remove sha1.el and base64.el stuff.
11962
11963 2001-11-26  Didier Verna  <didier@xemacs.org>
11964
11965         * nnmbox.el (nnmbox-create-mbox): create the mbox file directory
11966         if needed.
11967
11968 2001-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
11969
11970         * message.el (message-tamago-not-in-use-p): New function.
11971         (message-strip-forbidden-properties): Use it.
11972
11973 2001-11-26  Didier Verna  <didier@xemacs.org>
11974
11975         * gnus-start.el (gnus-check-first-time-used): only check for
11976         existence of .el[d] files.
11977
11978 2001-11-25 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11979
11980         * mm-util.el (mm-coding-system-priorities): Add backslash in the doc.
11981
11982         * message.el (message-setup-1): Clean up mc-*.
11983
11984 2001-11-25 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
11985
11986         * gnus-util.el (gnus-directory-sep-char-regexp): New variable.
11987         * gnus-score.el (gnus-score-find-bnews): Use it.
11988
11989         * gnus-sum.el (gnus-summary-limit-to-subject): An exclusion version.
11990         (gnus-summary-limit-to-author): Ditto.
11991         (gnus-summary-limit-to-extra): Ditto.
11992         (gnus-summary-find-matching): Support not-matching argument.
11993
11994 2001-11-25  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
11995
11996         * message.el (message-wash-subject): Use `insert' rather than
11997         `insert-string', which is deprecated.
11998
11999 2001-11-24  Simon Josefsson  <jas@extundo.com>
12000
12001         * mm-encode.el (mm-encode-content-transfer-encoding): Fix error
12002         message. (Gnus does not "default" to using 8bit for the message,
12003         it default to use 8bit encoding and the user-supplied CTE
12004         value. Calling this behaviour "treating it as 8bit" is perhaps
12005         better.)
12006
12007         * mm-bodies.el (mm-body-encoding): Intern encoding if needed
12008         (compare mm-charset-to-coding-system).
12009
12010 2001-11-23 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12011
12012         * canlock.el (canlock-sha1-with-openssl): Use unibyte
12013         buffer. Correctly decode hex.
12014
12015 2001-11-21 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12016
12017         * gnus-agent.el (gnus-category-insert-line): Convert category
12018         names to strings.
12019
12020 2001-11-20 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12021
12022         * message.el (sha1): eval-and-compile.
12023
12024 2001-11-20  Simon Josefsson  <jas@extundo.com>
12025
12026         * message.el (message-allow-no-recipients): New variable.
12027         (message-send): Use it, customize the prompting when posting to
12028         Gcc/Fcc alone.  From prj@po.cwru.edu (Paul Jarc).
12029
12030 2001-11-20 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12031
12032         * mm-util.el (mm-coding-system-priorities): New variable.
12033         (mm-sort-coding-systems-predicate): New function.
12034         (mm-find-mime-charset-region): Resort coding systems if needed.
12035         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
12036
12037 2001-11-20  Didier Verna  <didier@xemacs.org>
12038
12039         * gnus-group.el (gnus-group-make-help-group): new optional
12040         argument to control the error behavior.
12041         * gnus-start.el (gnus-check-first-time-used): use it to avoid
12042         erroring.
12043
12044 2001-11-19  Simon Josefsson  <jas@extundo.com>
12045
12046         * message.el (message-mode-map): Use C-c C-f C-i for Importance:
12047         instead of C-c C-u.  Suggested by Per Abrahamsen
12048         <abraham@dina.kvl.dk>.
12049
12050 2001-11-18 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12051
12052         * nnfolder.el (nnfolder-read-folder): Use group instead of
12053         nnfolder-current-group.
12054         Suggested by Lorentey Karoly <lorentey@elte.hu>.
12055
12056 2001-11-17  Simon Josefsson  <jas@extundo.com>
12057
12058         * message.el (message-send): Ask user if Fcc/Gcc should be
12059         performed when no other sender was specified.
12060         Suggested by prj@po.cwru.edu (Paul Jarc).
12061
12062 2001-11-17  Simon Josefsson  <jas@extundo.com>
12063
12064         * message.el (message-mode, message-mode-map): Use C-c C-u for
12065         Importance: instead of C-c C-p (used by SC).
12066
12067 2001-11-16  Simon Josefsson  <jas@extundo.com>
12068
12069         * message.el (message-insert-importance-high)
12070         (message-insert-importance-low): Save point.
12071
12072         * mail-source.el (mail-source-fetch-imap): Fix BODY.PEEK return
12073         value.
12074
12075 2001-11-16  Per Abrahamsen  <abraham@dina.kvl.dk>
12076
12077         * message.el (message-strip-special-text-properties): New option.
12078         (message-strip-forbidden-properties): Obey it.
12079
12080 2001-11-14  Sam Steingold  <sds@gnu.org>
12081
12082         * gnus-score.el: Fixed some doc strings to properly quote symbols.
12083
12084 2001-11-15  Simon Josefsson  <jas@extundo.com>
12085
12086         Support "Importance:" header in Message.
12087
12088         * message.el (message-mode-map): Bind C-c C-p to
12089         `message-insert-or-toggle-importance'
12090         (message-mode-menu): Add message-insert-importance-{high,low}.
12091         (message-insert-importance-high, message-insert-importance-low)
12092         (message-insert-or-toggle-importance): New functions.
12093         (message-tool-bar-map): Add {un,}important.
12094         (message-mode): Doc fix.
12095
12096 2001-11-15  Simon Josefsson  <jas@extundo.com>
12097
12098         * message.el (message-tool-bar-map): Fix attach toolbar tooltip.
12099
12100         * mml.el (mml-menu): Fix toolbar tooltip.
12101
12102 2001-11-15 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12103
12104         * nnfolder.el (nnfolder-save-marks): gnus-prin1 takes one argument.
12105         * nnml.el (nnml-save-marks): Ditto.
12106
12107         * gnus-sum.el (gnus-newsgroup-variables): Fix doc.
12108
12109 2001-11-15  Simon Josefsson  <jas@extundo.com>
12110
12111         * nnml.el (nnml-save-marks):
12112         * nnfolder.el (nnfolder-save-marks): Use `gnus-prin1'.
12113         Suggested by Istvan Marko <mi-gnus@imarko.dhs.org>.
12114
12115 2001-11-15  Per Abrahamsen  <abraham@dina.kvl.dk>
12116
12117         * gnus-art.el (gnus-article-wash-status-strings): Use
12118         `copy-sequence', not `copy-seq'.
12119
12120 2001-11-15  Per Abrahamsen  <abraham@dina.kvl.dk>
12121
12122         * gnus-art.el (gnus-article-wash-status-strings): New constant.
12123         (gnus-gnus-article-wash-status-entry): New function.
12124         (gnus-article-wash-status): Use it.
12125
12126 2001-11-13 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12127
12128         * mml1991.el: Add coding header.
12129
12130 2001-11-12  Simon Josefsson  <jas@extundo.com>
12131
12132         * mml1991.el (mml1991-use, mml1991-function-alist): New variables.
12133         (mml1991-gpg-sign, mml1991-gpg-encrypt): Renamed, from
12134         `mml1991-sign' and `mml1991-encrypt'.
12135         (mml1991-encrypt, mml1991-sign): New glue functions.
12136         (mml1991-mailcrypt-sign, mml1991-mailcrypt-encrypt): New functions.
12137
12138         * mml.el (mml-mode-map): `C-c RET o' map for PGP.
12139         (mml-menu): Add PGP to menu.
12140
12141         * mml-sec.el (top-level): Require mml1991.  Don't require smime.
12142         (mml-sign-alist, mml-encrypt-alist): Add "pgp".
12143         (mml-pgp-sign-buffer, mml-pgp-encrypt-buffer)
12144         (mml-secure-sign-pgp, mml-secure-encrypt-pgp): New glue functions.
12145
12146         * mml2015.el: Mention RFC 3156.
12147
12148         * mml1991.el: New file.  From Sascha L\e,A|\e(Bdecke <sascha@meta-x.de>.
12149
12150 2001-11-12 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12151
12152         * gnus-start.el (gnus-auto-subscribed-groups): Use ^nnml.
12153
12154         * gnus-sum.el (gnus-summary-move-article): Use number-to-string.
12155           From <Michael.Cook@cisco.com>
12156
12157 2001-11-11  Simon Josefsson  <jas@extundo.com>
12158
12159         * message.el (top-level): Autoload sha1.
12160         (message-canlock-generate): Use sha1 instead of md5 (sha1 used by
12161         canlock, no need to require two different hash algs).  Suggested
12162         by Ferenc Wagner <wferi@bolyai1.elte.hu>.
12163
12164 2001-11-09  Simon Josefsson  <jas@extundo.com>
12165
12166         * gnus.el (gnus-local-domain): Fix doc.  From Pavel Jan\e,Am\e(Bk
12167         <Pavel@Janik.cz>.
12168
12169 2001-11-09  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12170
12171         * message.el (message-point-in-header-p): New function.
12172         (message-do-auto-fill): Use it.
12173         (message-beginning-of-line): New function.  Goes to beginning of
12174         header value (i.e., end of header name), or to beginning of line
12175         if already at beginning of value.  Behaves like
12176         `beginning-of-line' when in message body.
12177         (message-mode-map): Bind it.
12178
12179 2001-11-08  Simon Josefsson  <jas@extundo.com>
12180
12181         * gnus-msg.el (gnus-posting-styles): Add doc.
12182
12183 2001-11-07  Simon Josefsson  <jas@extundo.com>
12184
12185         * gnus-sieve.el (gnus-sieve-generate): Don't invoke sieve-mode.
12186
12187         * sieve-mode.el (sieve-control-commands-face)
12188         (sieve-control-commands-face, sieve-action-commands-face)
12189         (sieve-test-commands-face, sieve-tagged-arguments-face): New
12190         faces.
12191         (sieve-font-lock-keywords): Use them.
12192         (sieve-mode): Only set font-lock-defaults in emacs.
12193
12194         * gnus-art.el (gnus-default-article-saver): Add
12195         gnus-summary-save-body-in-file.
12196         (gnus-summary-write-to-file): Fix doc.
12197
12198 2001-11-07  Simon Josefsson  <jas@extundo.com>
12199
12200         * gnus-art.el (gnus-treat-highlight-signature): Add cross
12201         reference to the correct chapter in the manual.
12202
12203         * mml.el (mml-mode): Add cross reference to Emacs MIME manual.
12204         Suggested by "Golubev I. N." <gin@mo.msk.ru>.
12205
12206 2001-11-07 06:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12207
12208         * mml.el (mml-preview): Bind mail-header-separator.
12209
12210 2001-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12211
12212         * message.el: Always require canlock.
12213         (message-ignored-supersedes-headers): Include Cancel-Lock and
12214         Cancel-Key.
12215         (message-insert-canlock): Don't require canlock.
12216         (message-cancel-news): Don't check whether canlock is available.
12217         (message-supersede): Support cancel-locks.
12218
12219         * gnus-art.el: Don't autoload canlock.
12220
12221 2001-11-06 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12222
12223         * mail-source.el (mail-source-fetch-imap): ASYNC param.
12224         From: <andre@slamdunknetworks.com>
12225
12226 2001-11-06 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12227
12228         * many files: Fix copyright lines.
12229
12230 2001-11-05 07:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12231
12232         * mml.el (mml-generate-mime-1): Use mm-with-unibyte-current-buffer.
12233         Suggested by Dave Love  <fx@gnu.org>.
12234
12235 2001-11-04 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12236
12237         * message.el (message-kill-buffer): Remove auto-save file after
12238         confirm.
12239
12240         * message.el (message-send-mail): Call message-generate-headers
12241         once.  Suggested by Matt Armstrong <matt@lickey.com>.
12242
12243         * gnus-topic.el (gnus-topic-rename): Initial-input.
12244         Suggested by Katsuhiro Hermit Endo <hermit@koka-in.org>.
12245
12246 2001-11-03  Per Abrahamsen  <abraham@dina.kvl.dk>
12247
12248         * message.el (message-forbidden-properties): New constant.
12249         (message-strip-forbidden-properties): New function.
12250         (message-mode): Activate it.
12251
12252 2001-11-02 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12253
12254         * mm-util.el (mm-iso-8859-15-compatible): Fix doc.
12255         (mm-hack-charsets): Fix doc.
12256
12257 2001-11-02  Simon Josefsson  <jas@extundo.com>
12258
12259         * gnus-int.el (gnus-check-server): Message "...done" when done.
12260
12261         * imap.el (imap-close): Don't message (imap-send-command-wait
12262         returns if the connection is dropped).
12263         (imap-wait-for-tag): Nix out message only when necessary.
12264
12265         * gnus-sieve.el (gnus-sieve-script): Use "stop" instead of "elsif"
12266         for non-crossposting.
12267         (gnus-sieve-crosspost): Default to t to be consistent with other
12268         parts of Gnus.
12269
12270 2001-11-01 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12271
12272         * mm-util.el (mm-iso-8859-15-compatible): Add inconvertible chars.
12273         (mm-iso-8859-x-to-15-table): Ditto.
12274         (mm-iso-8859-x-to-15-region): Ditto.
12275         (mm-find-mime-charset-region): Ditto.
12276
12277 2001-11-01  Simon Josefsson  <jas@extundo.com>
12278
12279         * nnimap.el (nnimap-close-asynchronous): New variable.
12280         (nnimap-close-group): Use it.
12281         (nnimap-expunge): Don't use it.
12282
12283         * imap.el (imap-callbacks): New variable.
12284         (imap-remassoc): Copied from `gnus-remassoc'.
12285         (imap-add-callback): New function.
12286         (imap-mailbox-expunge, imap-mailbox-close): Support asynchronous
12287         behaviour.
12288         (imap-parse-response): Call the callback.
12289
12290         * message.el (message-insert-canlock): New variable.
12291         (message-canlock-generate, message-canlock-password)
12292         (message-insert-canlock): New functions.
12293         (message-send-news): Call `message-insert-canlock'.
12294         (top-level): Require canlock when compiling.
12295         (message-insert-canlock): Require canlock before we need it.
12296
12297 2001-11-01 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12298
12299         * gnus-msg.el (gnus-copy-article-buffer): Copy sequence.
12300
12301 2001-11-01 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12302
12303         * dgnushack.el (dgnushack-make-load): A workaround for
12304         custom-add-loads bug in some versions of XEmacs.
12305
12306 2001-11-01 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12307
12308         * mm-util.el (mm-charset-synonym-alist): Revert (some).
12309
12310 2001-11-01 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12311
12312         * mm-util.el (mm-iso-8859-x-to-15-region): New function.
12313         (mm-hack-charsets): New variable.
12314         (mm-iso-8859-15-compatible): New variable.
12315         (mm-iso-8859-x-to-15-table): New variable.
12316         (mm-find-mime-charset-region): Add parameter hack-charsets.
12317
12318         * mm-bodies.el (mm-encode-body): Use it.
12319         * mml.el (mml-parse-1): Ditto.
12320
12321 2001-11-01  Simon Josefsson  <jas@extundo.com>
12322
12323         * gnus-group.el (gnus-group-make-menu-bar): Add Sieve.
12324
12325 2001-11-01 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12326
12327         * mm-util.el (mm-charset-to-coding-system): Return nil, if charset
12328         is nil.
12329
12330 2001-11-01 07:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12331
12332         * smiley-ems.el (smiley-update-cache): Auto detect file type.
12333
12334         * message.el (message-forward-rmail-make-body): Use
12335         save-window-excursion.
12336         (message-encode-message-body): Search with noerror.
12337         (message-setup-1): Convert compose-mail send-actions to
12338         message-send-actions.
12339
12340 2001-11-01  Simon Josefsson  <jas@extundo.com>
12341
12342         * sieve.el: Don't require easy-mmode. Suggested by Katsumi Yamaoka
12343         <yamaoka@jpl.org>.
12344
12345 2001-10-31 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12346
12347         * sieve-manage.el (sieve-string-bytes): No complain.
12348
12349 2001-11-01  Simon Josefsson  <jas@extundo.com>
12350
12351         * gnus-group.el (gnus-group-mode-map): Bind "D u" to
12352         `gnus-sieve-update' and "D g" to `gnus-sieve-generate'. (Functions
12353         has autoload cookies, so no `require' should be necessary.)
12354
12355         * sieve.el, sieve-mode.el, sieve-manage.el, gnus-sieve.el: New
12356         files.
12357
12358 2001-10-31  Simon Josefsson  <jas@extundo.com>
12359
12360         * gnus-cus.el (gnus-group-parameters): Support integer `display'
12361         parameter.
12362
12363         * gnus-sum.el (gnus-select-newsgroup): If group parameter
12364         `display' is a number (and C-u wasn't used to enter group), only
12365         fetch that number of articles.
12366
12367 2001-10-31  Matt Armstrong  <matt@lickey.com>
12368
12369         * gnus.el (gnus-find-subscribed-addresses): Doc fix:
12370         not-subscribed -> subscribed.
12371
12372 2001-10-31 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12373         From: Josh Huber <huber@alum.wpi.edu>
12374
12375         * message.el (message-subscribed-address-functions): New variable.
12376         (message-subscribed-addresses): New variable.
12377         (message-subscribed-regexps): New variable.
12378         (message-goto-mail-followup-to): New function.
12379         (message-send-mail): Add Mail-Followup-To.
12380         (message-make-mft): New function.
12381
12382         * gnus.el (gnus-find-subscribed-addresses): New function.
12383
12384 2001-10-31 07:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12385
12386         * mail-source.el (mail-source-fetch): If debug, don't regain signals.
12387         (mail-source-fetch-pop): Ditto.
12388         (mail-source-check-pop): Ditto.
12389
12390         * gnus-start.el (gnus-read-init-file): Ditto.
12391         (gnus-activate-group): Ditto.
12392         (gnus-read-newsrc-el-file): Ditto.
12393
12394 2001-10-30 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12395
12396         * message.el (message-get-reply-headers): Make sure there is ", ".
12397
12398         * mm-util.el (mm-mime-mule-charset-alist): Move down and call
12399         mm-coding-system-p. Don't correct it only in XEmacs.
12400         (mm-charset-to-coding-system): Use mm-coding-system-p and
12401         mm-get-coding-system-list.
12402         (mm-emacs-mule, mm-mule4-p): New variables.
12403         (mm-enable-multibyte, mm-disable-multibyte,
12404         mm-enable-multibyte-mule4, mm-disable-multibyte-mule4,
12405         mm-with-unibyte-current-buffer,
12406         mm-with-unibyte-current-buffer-mule4): Use them.
12407         (mm-find-mime-charset-region): Treat iso-2022-jp.
12408
12409         From  Dave Love  <fx@gnu.org>:
12410
12411         * mm-util.el (mm-mime-mule-charset-alist): Make it correct by
12412         construction.
12413         (mm-charset-synonym-alist): Remove windows-125[02].  Make other
12414         entries conditional on not having a coding system defined for
12415         them.
12416         (mm-mule-charset-to-mime-charset): Use
12417         find-coding-systems-for-charsets if defined.
12418         (mm-charset-to-coding-system): Don't use
12419         mm-get-coding-system-list.  Look in mm-charset-synonym-alist
12420         later.  Add last resort search of coding systems.
12421         (mm-enable-multibyte-mule4, mm-disable-multibyte-mule4)
12422         (mm-with-unibyte-current-buffer-mule4): Just treat Mule 5 like
12423         Mule 4.
12424         (mm-find-mime-charset-region): Re-write.
12425         (mm-with-unibyte-current-buffer): Restore buffer as well as
12426         multibyteness.
12427
12428 2001-10-30 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12429
12430         * canlock.el, sha1-el.el, hex-util.el: Move from contrib
12431         directory. Thanks to Katsumi Yamaoka <yamaoka@jpl.org> and Shuhei
12432         KOBAYASHI <shuhei@aqua.ocn.ne.jp>.
12433
12434 2001-10-30 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12435
12436         * gnus-art.el (article-display-x-face): Nix buffer-read-only
12437         again.
12438
12439         * mml2015.el (mml2015-gpg-verify): Convert <LF> to <CR><LF>.
12440
12441 2001-10-30 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12442
12443         * gnus-spec.el (gnus-parse-simple-format): Use
12444           buffer-substring-no-properties.
12445
12446 2001-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12447
12448         * gnus-art.el (article-verify-cancel-lock): New function.
12449
12450         * nnheader.el (nntp-process-response): New variable.
12451         (nnheader-init-server-buffer): Make `nntp-process-response'
12452         buffer-local in `nntp-server-buffer'.
12453
12454         * nntp.el (nntp-prepare-post-hook): New hook.
12455         (nntp-wait-for): Save a server's ID in `nntp-process-response'.
12456         (nntp-async-trigger): Ditto.
12457         (nntp-request-post): Insert a server's ID if there's no Message-ID
12458         header; run `nntp-prepare-post-hook'.
12459
12460 2001-10-30 04:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12461
12462         * gnus-art.el (article-decode-group-name): Use nnmail-fetch-field
12463         instead.
12464
12465         * message.el (message-forward-subject-author-subject): Don't use
12466         message-news-p, which widens the buffer.
12467         (message-forward-make-body): New function.
12468         (message-forward): Use it.
12469         (message-insinuate-rmail): New function.
12470         (message-forward-rmail-make-body): New function.
12471
12472 2001-10-30 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12473
12474         * mm-extern.el (mm-extern): Provide it.
12475
12476         * mm-partial.el (mm-partial): Provide it.
12477
12478 2001-10-28 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12479
12480         * gnus-msg.el (gnus-setup-message): Call post-command-hook.
12481
12482 2001-10-29  Simon Josefsson  <jas@extundo.com>
12483
12484         * mml.el (mml-preview): Bind message-this-is-news if it is
12485         news. From Jesper Harder <harder@myrealbox.com>.
12486
12487 2001-10-28  Simon Josefsson  <jas@extundo.com>
12488
12489         * gnus-sum.el (gnus-group-make-articles-read): Inline group.
12490
12491 2001-10-29  Per Abrahamsen  <abraham@dina.kvl.dk>
12492
12493         * smiley-ems.el (smiley-regexp-alist): Add support for sad and
12494         ironic smilies.
12495
12496 2001-10-27  Simon Josefsson  <jas@extundo.com>
12497
12498         * message.el (message-indent-citation): Don't add trailing
12499         whitespace when citing text.
12500
12501         * gnus.el (gnus-group-faq-directory): Fix.  From Jesper Harder
12502         <harder@ifa.au.dk>.
12503
12504 2001-10-26 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12505
12506         * nnweb.el (nnweb-possibly-change-server): Create nnweb-hashtb if
12507         not available.
12508         (nnweb-request-scan): Nix nnweb-hashtb if ephemeral.
12509         (nnweb-type-definition): Add google as alias of dejanews.
12510         (nnweb-google-parse-1): Forward 1 line.
12511
12512 2001-10-26  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12513
12514         * gnus-msg.el (gnus-summary-mail-forward): Doc fix: add pointer to
12515         variable `message-forward-ignored-headers'.
12516
12517 2001-10-24  Per Abrahamsen  <abraham@dina.kvl.dk>
12518
12519         * gnus.el (gnus-expand-group-parameter): New function.
12520         (gnus-expand-group-parameters): Call it.
12521         (gnus-group-fast-parameter): New function.
12522         (gnus-group-find-parameter): Call it.
12523
12524 2001-10-23  Per Abrahamsen  <abraham@dina.kvl.dk>
12525
12526         * gnus.el (gnus-news-group-p): Rewrote.  Now accepts a header
12527         vector (it didn't before because of a bug).
12528         * gnus-msg.el (gnus-post-news): Use header vector directly, if
12529         available.  Before it converted it to an article number.
12530
12531         This makes followup to news articles with negative numbers in
12532         nnvirtual groups use news instead of mail.
12533
12534 2001-10-23  Per Abrahamsen  <abraham@dina.kvl.dk>
12535
12536         * gnus.el (post-method): Use `native' instead of `nil'.
12537
12538         * gnus-msg.el (gnus-post-method): Ditto.
12539
12540 2001-10-23  Per Abrahamsen  <abraham@dina.kvl.dk>
12541
12542         * gnus.el (gnus-define-group-parameter): Grammar fix.
12543
12544 2001-10-22  Simon Josefsson  <jas@extundo.com>
12545
12546         * gnus-msg.el (gnus-extended-version): Include
12547         system-configuration.
12548         Suggested by Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Gro\e,b_\e(Bjohann).
12549
12550 2001-10-22  Per Abrahamsen  <abraham@dina.kvl.dk>
12551
12552         * gnus.el (post-method): Customization fix: `native' is not a
12553         valid value.
12554         * gnus-msg.el (gnus-post-method): Doc and customization fix:
12555         `native' is not a valid value.
12556
12557 2001-10-21  Simon Josefsson  <jas@extundo.com>
12558
12559         * nnimap.el (nnimap): Defgroup
12560         (nnimap-strict-function, nnimap-strict-function-match): New
12561         widget, from Per Abrahamsen  <abraham@dina.kvl.dk>.
12562         (nnimap-split-crosspost, nnimap-split-inbox)
12563         (nnimap-split-rule, nnimap-split-predicate)
12564         (nnimap-split-predicate): Defcustom.
12565         (nnimap-split-inbox, nnimap-expunge-search-string)
12566         (nnimap-importantize-dormant): Remove "*" from doc.
12567
12568 2001-10-20  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12569
12570         * gnus-sum.el (gnus-summary-limit-to-score): Prompt for score if
12571         not supplied via prefix arg.  From Lisp, make arg mandatory.
12572         Suggested by Frank Schmitt.
12573
12574 2001-10-20  Per Abrahamsen  <abraham@dina.kvl.dk>
12575
12576         * message.el (message-do-auto-fill): Avoid calling
12577         'rfc822-goto-eoh'.
12578
12579 2001-10-20  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12580         From Paul Jarc <prj@po.cwru.edu>.
12581
12582         * message.el (message-get-reply-headers): Restructure the logic
12583         and add comments.  From Paul Jarc <prj@po.cwru.edu>.
12584
12585 2001-10-20  Simon Josefsson  <jas@extundo.com>
12586
12587         * message.el (message-cancel-news): Support cancel-locks.
12588         Suggested by Per Abrahamsson.
12589
12590         * nnml.el (nnml-marks-changed-p): Use `equal' when comparing
12591         conses.  From David Z Maze <dmaze@MIT.EDU>.
12592
12593         * nnfolder.el (nnfolder-marks-changed-p): Ditto.
12594
12595 2001-10-19  Per Abrahamsen  <abraham@dina.kvl.dk>
12596
12597         * mm-decode.el (mm-default-directory): Fix customize type.
12598
12599         * message.el (message-setup-fill-variables): Kludge to use
12600         normal-auto-fill-function even if auto fill is already activated.
12601
12602 2001-10-19  Per Abrahamsen  <abraham@dina.kvl.dk>
12603
12604         * message.el (message-do-auto-fill): New version that does not
12605         rely on text properties, by Simon Josefsson <jas@extundo.com>.
12606         (message-setup-1): Removed the `message-field' property.
12607
12608         * gnus-draft.el (gnus-draft-edit-message): Removed the
12609         `message-field' property.
12610
12611 2001-10-19  Per Abrahamsen  <abraham@dina.kvl.dk>
12612
12613         * gnus-draft.el (gnus-draft-edit-message): Change `field' to
12614         `message-field'.  The `field' property has a special significance in
12615         Emacs 21.
12616
12617         * message.el (message-send, message-setup-1): Ditto.
12618
12619 2001-10-18  Simon Josefsson  <jas@extundo.com>
12620
12621         * gnus-sum.el (gnus-group-make-articles-read): Call g-r-set-mark
12622         when undoing.
12623
12624 2001-10-18  Simon Josefsson  <jas@extundo.com>
12625         From Frank Schmitt <usereplyto@Frank-Schmitt.net>
12626
12627         * gnus-sum.el (gnus-summary-limit-to-display-predicate): Fix typo.
12628         (gnus-summary-make-menu-bar): Ditto.
12629
12630 2001-10-17  Simon Josefsson  <jas@extundo.com>
12631
12632         * nnimap.el (nnimap-expiry-target): Make sure it is back to the
12633         server. Suggested by ShengHuo ZHU <zsh@cs.rochester.edu>.
12634
12635 2001-10-17 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12636
12637         * gnus-sum.el (gnus-summary-line-format-alist): user-date entry.
12638         * gnus-util.el (gnus-user-date): New function.
12639         From Frank Schmitt <usenet@Frank-Schmitt.net>.
12640
12641 2001-10-17  Per Abrahamsen  <abraham@dina.kvl.dk>
12642
12643         * message.el (message-check-news-header-syntax): Special case
12644         nnvirtual groups.
12645
12646         * gnus-sum.el (gnus-summary-respool-default-method): Changed
12647         customize type to `symbol'.
12648
12649 2001-10-17 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12650
12651         * gnus-spec.el (gnus-parse-simple-format): Support extended spec
12652         %&foo;.
12653         (gnus-parse-simple-format): Support user extended spec too.
12654         %u&foo; invokes gnus-user-format-function-foo.
12655
12656 2001-10-17 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12657
12658         * nnml.el (nnml-request-expire-articles): Make sure it is back to
12659         the server.
12660         * nnmbox.el (nnmbox-request-expire-articles): Ditto.
12661         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
12662         * nnbabyl.el (nnbabyl-request-expire-articles): Ditto.
12663         * nndiary.el (nndiary-request-expire-articles): Ditto.
12664         (nndiary-schedule): Defsubst it before use it.
12665         (nndiary-error): eval-and-compile.
12666
12667 2001-10-17  Per Abrahamsen  <abraham@dina.kvl.dk>
12668
12669         * gnus-msg.el (gnus-post-method): Changed two instances of
12670         `active' to `current' and one `null' to `not'.
12671
12672 2001-10-16  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12673         From Katsumi Yamaoka <yamaoka@jpl.org>.
12674
12675         * message.el (message-setup-fill-variables): Use
12676         `normal-auto-fill-function' instead of `auto-fill-function'.
12677
12678 2001-10-16  Simon Josefsson  <jas@extundo.com>
12679
12680         * mml2015.el (mml2015-fix-micalg): Fix for Mutt-bug.
12681         (mml2015-gpg-decrypt-1): Decanonicalize decrypted MIME
12682         body. (Mailcrypt seem to do this, but gpg.el doesn't.)
12683
12684 2001-10-16  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12685         Patch by Oliver Scholz <oscholz@my.gnus.org>.
12686
12687         * gnus-draft.el (gnus-draft-edit-message): Add text property
12688         `field' with value `header' to message headers.
12689         * message.el (message-setup-1): Really add text property to all of
12690         the header, not just part of it.
12691
12692 2001-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12693
12694         * gnus-group.el (gnus-group-sort-by-server): Use it.
12695
12696         * gnus.el (gnus-method-to-full-server-name): New, bogus function.
12697
12698         * gnus-topic.el (gnus-topic-sort-groups-by-server): New command
12699         and keystroke.
12700
12701 2001-10-14  Simon Josefsson  <jas@extundo.com>
12702
12703         * dig.el: Doc fix.
12704
12705         * smime.el: Doc fix.
12706
12707         * gnus-msg.el (gnus-inews-do-gcc): Port header encoded-word
12708         charset magic from message.el.
12709
12710 2001-10-12  Simon Josefsson  <jas@extundo.com>
12711         Suggested by david.goldberg6@verizon.net (David S. Goldberg)
12712
12713         * gnus-cite.el (gnus-article-toggle-cited-text): Don't remove
12714         'cite from g-a-wash-types.
12715         (gnus-cite-toggle): Ditto.  Add 'cite.  Set modeline.
12716         (gnus-article-hide-citation): Fix.
12717
12718         * gnus-cite.el (gnus-article-hide-citation): Add `c' mode line
12719         character.
12720         (gnus-article-toggle-cited-text): Toggle `c' mode line character.
12721
12722         * gnus-art.el (gnus-treat-hide-citation-maybe): Remove duplicate
12723         definition.
12724         (gnus-signature-toggle): Toggle `s' mode line character.
12725
12726         * gnus-art.el (article-emphasize): Set `g-a-wash-types' after
12727         doing stuff that clears it.
12728
12729 2001-10-12  Simon Josefsson  <jas@extundo.com>
12730
12731         * gnus-cache.el (gnus-summary-limit-include-cached): Rewrite.
12732         From Eric Marsden <emarsden@laas.fr>.
12733
12734 2001-10-12 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12735
12736         * message.el (message-do-auto-fill): Use gnus-point-at-bol.
12737         (autoload): Add some autoloads.
12738
12739 2001-10-12  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12740         Suggested by Oliver Scholz <epameinondas@gmx.de>.
12741
12742         * message.el (message-do-auto-fill): New function.  Like
12743         `do-auto-fill' but don't fill when in the message header.
12744         (message-setup-1): Put a text property on the message header.
12745         (message-setup-fill-variables): Use `message-do-auto-fill'.
12746
12747 2001-10-10 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12748
12749         * message.el (message-send-mail-partially): Insert an empty line
12750         first, because of the change of message-make-lines.
12751
12752 2001-10-10  Florian Weimer  <fw@deneb.enyo.de>
12753
12754         * mm-util.el (mm-charset-synonym-alist): If Emacs doesn't support
12755         iso-8859-15, make it an alias for iso-8859-1.
12756
12757 2001-10-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12758
12759         * message.el (message-send-news): Don't modify the value of
12760         `message-syntax-checks' if it is not a list (possibly it is
12761         `dont-check-for-anything-just-trust-me').
12762
12763 2001-10-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12764
12765         * gnus-group.el (gnus-group-name-charset-group-alist): Use
12766         `find-coding-system' for XEmacs to check whether the coding-system
12767         `utf-8' is available.
12768
12769 2001-10-09 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12770
12771         * dgnushack.el (dgnushack-compile): Detect mh-e and xml.
12772
12773 2001-10-09  Per Abrahamsen  <abraham@dina.kvl.dk>
12774
12775         * message.el (message-send-news): Oops, missed case with no
12776         "Followup-To" header...
12777
12778 2001-10-09  Per Abrahamsen  <abraham@dina.kvl.dk>
12779
12780         * message.el (message-send-news): Allow
12781         `gnus-group-name-charset-group-alist' to affect encoding of the
12782         "Newsgroups" and "Followup-To" headers.
12783
12784 2001-10-07 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12785
12786         * Makefile.in (install-el): Depend on gnus-load.el.
12787
12788 2001-10-07 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12789
12790         * Makefile.in (install-el): Use -f.
12791         From: Amos Gouaux <amos+lists.ding@utdallas.edu>
12792
12793 2001-10-07  Per Abrahamsen  <abraham@dina.kvl.dk>
12794
12795         * message.el (message-send-news): Don't encode Followups-To when
12796         `gnus-group-name-charset-group-alist is' ".*".  [Yuck]
12797
12798         * gnus-util.el (gnus-decode-newsgroups): No space in newsgroup
12799         header.
12800
12801         * gnus-art.el (article-decode-group-name): Also decode
12802         "Followup-To".
12803
12804         * rfc2047.el (rfc2047-encode-message-header): Encode without
12805         asking for null methods.
12806
12807         * gnus-group.el (gnus-group-name-charset-group-alist): Make utf-8
12808         default charset for newsgroup names in accordance with USEFOR.
12809
12810         * gnus-group.el (gnus-group-name-charset-method-alist,
12811         gnus-group-name-charset-group-alist): Removed "*" from doc
12812         strings, "*" should not be used for complex variables.
12813
12814 2001-10-06  Simon Josefsson  <jas@extundo.com>
12815
12816         Support UTF-8 group names better.
12817
12818         * message.el (message-check-news-header-syntax): Encode group
12819         names before comparison.
12820
12821         * gnus-msg.el (gnus-copy-article-buffer): Run all
12822         `gnus-article-decode-hook's except `article-decode-charset'
12823         instead of hardcoding call to one of them.
12824
12825         * gnus-art.el (gnus-article-decode-hook): Add
12826         `article-decode-group-name'.
12827         (article-decode-group-name): New function, use `g-d-n'.
12828
12829         * gnus-group.el (gnus-group-insert-group-line): Decode
12830         gnus-tmp-group using `g-d-n'.
12831
12832         * gnus-util.el (gnus-decode-newsgroups): New function.
12833
12834 2001-10-06  Per Abrahamsen  <abraham@dina.kvl.dk>
12835
12836         * gnus-srvr.el (gnus-browse-foreign-server): Fixed bug non-nil
12837         `gnus-group-name-charset-group-alist'.
12838
12839 2001-10-06 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12840
12841         * Makefile.in: Install el in install. Add uninstall.
12842
12843 2001-10-05  Simon Josefsson  <jas@extundo.com>
12844
12845         * nnheader.el (gnus-verbose-backends, gnus-nov-is-evil): Custom.
12846
12847         * gnus-sum.el (gnus-summary-move-article): Also activate new groups.
12848
12849         * nnfolder.el (nnfolder-normalize-buffer): Don't insert \n\n in
12850         empty folders.
12851
12852         * gnus-sum.el (gnus-select-newsgroup): Don't enable `display'
12853         limiting if read-all (C-u RET) was used.
12854
12855 2001-10-04  Simon Josefsson  <jas@extundo.com>
12856
12857         * mail-source.el (mail-source-movemail-program): New variable.
12858         (mail-source-movemail): Use it.  Suggested by Taylor Hutt
12859         <thutt@thutt.vmware.com>.
12860
12861 2001-10-03  Simon Josefsson  <jas@extundo.com>
12862
12863         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): New param.
12864         (gnus-summary-line-format-alist): Fix param.
12865
12866 2001-10-02  Simon Josefsson  <jas@extundo.com>
12867
12868         * nnimap.el (nnimap-request-move-article): Use imap.el directly,
12869         don't go through `nnimap-request-expire-articles' to delete the
12870         article.  Thanks to prj@po.cwru.edu (Paul Jarc).
12871
12872 2001-10-02 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12873
12874         * gnus-agent.el (gnus-agent-write-active): The min in the
12875         agent/active may be larger than that in the server/active.
12876
12877 2001-10-01  Simon Josefsson  <jas@extundo.com>
12878
12879         * mail-source.el (mail-source-fetch-imap): Use BODY.PEEK if server
12880         is IMAP4rev1.
12881
12882         * nnml.el (gnus-article-unpropagatable-p): Autoload gnus-sum.
12883
12884         * nnfolder.el: Ditto.
12885
12886 2001-09-30  Dan Christensen  <jdc@uwo.ca>
12887
12888         * gnus-sum.el (gnus-summary-extract-address-component): New function.
12889         (gnus-summary-from-or-to-or-newsgroups): Optimize.
12890
12891 2001-09-29  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12892
12893         * message.el (message-mode-map): Keybinding for `gnus-delay-article'.
12894         (message-mode-menu): Menu item for same.
12895
12896         * gnus-group.el (gnus-group-make-menu-bar): Menu item for sending
12897         delayed articles.
12898
12899         * gnus-delay.el (gnus-delay-send-drafts): Do nothing if
12900         nndraft:delayed does not exist.
12901         (gnus-delay-initialize): Don't set up keymap, that's done from
12902         message.el now.
12903         (gnus-delay, gnus-delay-group, gnus-delay-header)
12904         (gnus-delay-default-delay, gnus-delay-default-hour): Customize.
12905
12906 2001-09-29  Simon Josefsson  <jas@extundo.com>
12907
12908         * mm-util.el (mm-mime-mule-charset-alist): Encode mule-utf-8 as
12909         utf-8, not eight-bit-control.
12910
12911         * imap.el (imap-shell-host, imap-default-user, imap-use-utf7)
12912         (imap-log, imap-debug): Custom.
12913         (imap-log-buffer, imap-debug-buffer): New constants.
12914         (imap-kerberos4-open, imap-gssapi-open, imap-ssl-open)
12915         (imap-network-open, imap-shell-open, imap-starttls-open)
12916         (imap-send-command-1, imap-send-command, imap-arrival-filter)
12917         (imap-debug): Use imap-*-buffer.
12918
12919         * nndoc.el (nndoc-article-type): Add mailman.
12920         (nndoc-type-alist): Ditto.
12921         (nndoc-mailman-type-p): New function.
12922
12923 2001-09-28 07:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12924
12925         * gnus-xmas.el (gnus-article-x-face-command): Merge it into
12926         gnus-art.el.
12927
12928 2001-09-27  Simon Josefsson  <jas@extundo.com>
12929
12930         * gnus-topic.el (gnus-topic-mode-map): Add catchup.
12931         (gnus-topic-catchup-articles): New function. Suggested by Robin
12932         S. Socha <robin-dated-1001857693.185e29@socha.net>.
12933
12934 2001-09-27 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12935         From Gerd M\e,Av\e(Bllmann <gerd@gnu.org>.
12936
12937         * gnus-ems.el (gnus-article-display-xface): Insert xface after
12938         previous ones.
12939
12940 2001-09-27 07:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12941         From Daiki Ueno  <ueno@unixuser.org>
12942
12943         * gnus-sum.el (gnus-summary-show-article): The arglist of
12944         detect-coding-region is incompatible.
12945
12946 2001-09-26 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12947         From Katsuhiro Hermit Endo <hermit@koka-in.org>
12948
12949         * gnus-group.el (gnus-group-delete-group): Typo.
12950
12951 2001-09-26  Simon Josefsson  <jas@extundo.com>
12952
12953         * nnmail.el (nnmail-expiry-target-group): Add doc warning.
12954
12955         * nnimap.el (nnimap-expiry-target): Use temp buffer.
12956
12957 2001-09-26 07:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12958
12959         * gnus-cus.el (gnus-group-parameters): Display as sexp.
12960
12961 2001-09-22  Simon Josefsson  <jas@extundo.com>
12962
12963         * nnml.el (nnml-open-marks): Remove unpropagatable marks.
12964
12965         * nnfolder.el (nnfolder-open-marks): Ditto.
12966
12967         * gnus-sum.el (gnus-article-unpropagatable-p): New function.
12968         (gnus-update-marks): Use it.
12969         (gnus-update-marks): Use `gnus-article-mark-to-type' instead of
12970         hardcoded list.
12971
12972         * gnus.el (gnus-article-special-mark-lists): Add killed.
12973         (gnus-article-unpropagated-mark-lists): New constant.
12974
12975 2001-09-22  Simon Josefsson  <jas@extundo.com>
12976
12977         * gnus-sum.el (gnus-summary-mode-hook): Add gnus-pick-mode as
12978         custom option.
12979
12980 2001-09-23  Simon Josefsson  <jas@extundo.com>
12981
12982         * gnus-draft.el (gnus-draft-setup): Add mark in backend as well.
12983
12984 2001-09-23 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
12985
12986         * gnus-msg.el (gnus-button-mailto): Hack save-selected-window-window.
12987
12988 2001-09-22  Per Abrahamsen  <abraham@dina.kvl.dk>
12989
12990         * gnus-group.el (gnus-group-sort-function): Fix customize type to
12991         accept lists of functions.
12992
12993 2001-09-20  Simon Josefsson  <jas@extundo.com>
12994
12995         * gnus-group.el (gnus-group-catchup): Update expire marks in
12996         backend.  Also, if ALL also set expire marks on tick/dormant.
12997
12998 2001-09-20  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
12999
13000         * message.el (message-tab-body-function): New variable.
13001         * message.el (message-tab): Use it.
13002
13003 2001-09-19  Sam Steingold  <sds@gnu.org>
13004
13005         * gnus-win.el (gnus-buffer-configuration): Respect
13006         `gnus-bug-create-help-buffer'.
13007
13008 2001-09-18  Simon Josefsson  <jas@extundo.com>
13009
13010         * gnus-spec.el (gnus-correct-pad-form): Re-revert.
13011         (gnus-parse-simple-format): Re-revert.
13012
13013 2001-09-16  Katsuhiro Hermit Endo  <hermit@koka-in.org>
13014         Trivial patch.
13015
13016         * gnus-spec.el (gnus-parse-complex-format): Don't fold search
13017         case.  (Thanks to Daiki Ueno <ueno@unixuser.org>.)
13018
13019 2001-09-18  Simon Josefsson  <jas@extundo.com>
13020
13021         * gnus-spec.el (gnus-correct-pad-form): Remove until papers are
13022         signed.
13023         (gnus-parse-simple-format): Don't use it.
13024
13025 2001-09-17  Miles Bader  <miles@gnu.org>
13026
13027         * gnus-srvr.el (gnus-server-insert-server-line): Don't let an
13028         error querying a backend abort the whole process.
13029
13030 2001-09-17 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13031
13032         * gnus-srvr.el (gnus-server-mode): Fix bogus fontification.
13033         From Gerd M\e,Av\e(Bllmann <gerd@gnu.org>.
13034
13035 2001-09-17  Didier Verna  <didier@xemacs.org>
13036
13037         * nndiary.el: version 0.2-b14.
13038         * gnus-diary.el (gnus-diary-check-message): fix `read-string'
13039         compatibility problem with XEmacs 21.1.
13040
13041 2001-09-15  Simon Josefsson  <jas@extundo.com>
13042
13043         * gnus-group.el (gnus-group-line-format): Document %c.
13044
13045         * nnml.el (nnml-parse-head): Handle CRLF files.
13046         (nnml-generate-nov-file): Ditto.
13047         (nnml-retrieve-headers): Ditto.
13048
13049 2001-09-15  Michael Welsh Duggan  <md5i@cs.cmu.edu>
13050
13051         * gnus-spec.el (gnus-parse-format): Don't treat %c as %C.
13052
13053 2001-09-13  Martin Kretzschmar  <Martin.Kretzschmar@inf.tu-dresden.de>
13054
13055         * gnus-spec.el (gnus-correct-substring): Still stopped one
13056         character before we wanted (never included last character).
13057         (gnus-tilde-max-form, gnus-tilde-cut-form) Made readable again,
13058         add missing "," (once per function)
13059
13060 2001-09-14  Simon Josefsson  <jas@extundo.com>
13061
13062         * gnus-start.el (gnus-group-mode-hook): Moved from gnus-group
13063         (otherwise e.g. gnus-agentize in .gnus overrides the customized
13064         default before gnus-group is loaded and the variable set.)
13065
13066         * nnimap.el (nnimap-request-set-mark): Do not store bookmark,
13067         killed or unsent marks.
13068
13069         * gnus-draft.el (gnus-draft-setup): Don't set mark when there
13070         isn't an article to set it on (e.g. when you `a' in a group).
13071
13072 2001-09-12  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
13073
13074         * mm-util.el (mm-charset-synonym-alist): add windows-1250 so we
13075         can read e-mails from Microsoft Outlook users not using ISO
13076         8859-2 character set.
13077
13078 2001-09-12 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13079
13080         * gnus-diary.el: Minor modifications to avoid warnings.
13081         (gnus-summary-misc-menu): defvar.
13082         (gnus-diary-check-message): Use gnus-point-at-eol.
13083         (gnus-diary-kill-entire-line): eval-and-compile.
13084
13085 2001-09-12  Didier Verna  <didier@xemacs.org>
13086
13087         * nndiary.el: new version (0.2-b13).
13088         * nndiary.el (nndiary-mail-sources): doc update.
13089         * nndiary.el (nndiary-split-methods): ditto.
13090         * nndiary.el (nndiary-request-accept-article-hooks): New.
13091         * nndiary.el (nndiary-request-accept-article): use it, check
13092         message validity.
13093         * nndiary.el (nndiary-get-new-mail): changed default to nil.
13094         * nndiary.el (nndiary-schedule): fix bug (misplaced
13095         condition-case): it didn't return nil on error.
13096         * gnus-diary.el: new version.
13097         * gnus-diary.el (gnus-diary-summary-line-format): removed %I.
13098         * gnus-diary.el (gnus-diary-header-value-history): New.
13099         * gnus-diary.el (gnus-diary-narrow-to-headers): New.
13100         * gnus-diary.el (gnus-diary-add-header): New.
13101         * gnus-diary.el (gnus-diary-check-message): New.
13102         * gnus-diary.el (message-mode-map): bind the above to `C-c D c'.
13103         * gnus-diary.el (gnus-article-edit-mode-map): ditto.
13104
13105 2001-09-10 TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
13106
13107         * gnus-sum.el (gnus-select-newsgroup): Make
13108         `gnus-current-select-method' buffer-local.
13109
13110         * gnus-art.el (gnus-request-article-this-buffer): Refer
13111         `gnus-current-select-method' in the current summary buffer.
13112
13113 2001-09-10  Simon Josefsson  <jas@extundo.com>
13114         From Daniel Pittman <daniel@rimspace.net>
13115
13116         * gnus-spec.el (gnus-correct-pad-form): Fix.
13117
13118 2001-09-09  Simon Josefsson  <jas@extundo.com>
13119
13120         * mm-decode.el (mm-inline-media-tests): Add
13121         application/x-emacs-lisp.
13122         (mm-attachment-override-types): Add
13123         application/{x-,}pkcs7-signature.
13124
13125         * gnus-srvr.el (gnus-server-mode-hook, gnus-server-exit-hook)
13126         (gnus-server-line-format, gnus-server-mode-line-format)
13127         (gnus-server-browse-in-group-buffer): Customize.
13128
13129 2001-09-08 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13130
13131         * nnml.el (nnml-marks-changed-p): Typo.
13132         (nnml-save-marks, nnml-open-marks): Use gnus-sethash.
13133         (nnml-marks-changed-p): Use gnus-gethash.
13134         (nnml-marks-modtime): Use gnus-make-hashtable.
13135
13136         * nnfolder.el (nnfolder-marks-changed-p): Typo.
13137         (nnfolder-request-expire-articles, nnfolder-save-marks)
13138         (nnfolder-open-marks): Typo.
13139         (nnfolder-save-marks, nnfolder-open-marks): Use gnus-sethash.
13140         (nnfolder-marks-changed-p): Use gnus-gethash.
13141         (nnfolder-marks-modtime): Use gnus-make-hashtable.
13142
13143 2001-09-08  Simon Josefsson  <jas@extundo.com>
13144
13145         * nnfolder.el (nnfolder-marks-modtime): New variable.
13146         (nnfolder-marks-changed-p): New function.
13147         (nnfolder-save-marks, nnfolder-open-marks): Save modtime.
13148         (nnfolder-request-update-info): Don't update if marks didn't change.
13149
13150         * nnml.el (nnml-marks-modtime): New variable.
13151         (nnml-marks-changed-p): New function.
13152         (nnml-save-marks, nnml-open-marks): Save modtime.
13153         (nnml-request-update-info): Don't update if marks didn't change.
13154
13155         * gnus-agent.el (gnus-agent-any-covered-gcc)
13156         (gnus-agent-add-server, gnus-agent-remove-server): Use
13157         gnus-agent-method-p.
13158
13159         * gnus-art.el (gnus-buttonized-mime-types): New variable.
13160         (gnus-unbuttonized-mime-type-p): Use it.
13161
13162         * gnus-agent.el (gnus-agent-fetch-group): If online, actually
13163         fetch group.
13164
13165 2001-09-08  Simon Josefsson  <jas@extundo.com>
13166         From Daniel Pittman <daniel@rimspace.net>
13167
13168         * gnus-spec.el (gnus-correct-pad-form): New function.
13169         (gnus-parse-simple-format): Use it.
13170
13171 2001-09-07  Simon Josefsson  <jas@extundo.com>
13172
13173         * gnus-group.el (gnus-group-sort-groups): Unmark all groups.
13174         (gnus-group-sort-selected-groups): Ditto.  Suggested by Harry
13175         Putnam <reader@newsguy.com>.
13176         (gnus-group-sort-selected-groups): Touch dribble file.
13177
13178 2001-09-07 Raja R Harinath  <harinath@cs.umn.edu>
13179
13180         * nnml.el (nnml-filenames-are-evil): New variable.
13181         (nnml-article-to-file-alist): Rename to ...
13182         (nnml-current-group-article-to-file-alist): ... this.
13183         Respect `nnml-filenames-are-evil'.
13184         (nnml-active-number): Update.
13185         (nnml-update-file-alist): Update.
13186         (nnml-request-article): Use nnheader-article-to-file-alist.
13187         (nnml-request-rename-group): Likewise.
13188
13189 2001-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13190
13191         * gnus-sum.el (gnus-summary-insert-line): Fix.
13192
13193 2001-09-06  Bj\e,Av\e(Brn Torkelsson  <torkel@acc.umu.se>
13194
13195         * gnus-sum.el: Bind g-s-t-s to "W g".
13196         * gnus-sum.el (gnus-summary-make-menu-bar): Add g-s-t-s.
13197         * gnus-sum.el (gnus-summary-toggle-smiley): New function. Toggles
13198         display of graphical smilies.
13199
13200 2001-09-07 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13201
13202         * gnus-start.el (gnus-setup-news): A typo.
13203         From Bill White <billw@wolfram.com>.
13204
13205 2001-09-06  Simon Josefsson  <jas@extundo.com>
13206
13207         * gnus-sum.el (gnus-summary-insert-line): Insert forwarded, recent
13208         and unseen marks.
13209
13210 2001-09-05  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
13211
13212         * nnmail.el (nnmail-split-fancy): Document `junk'.
13213
13214 2001-09-04  Simon Josefsson  <jas@extundo.com>
13215
13216         * imap.el (imap-search): Don't error if server is broken.
13217
13218 2001-09-02  Benjamin Rutt  <brutt@bloomington.in.us>
13219
13220         * nnmbox.el (nnmbox-find-article): Fix infinite loop when
13221         searching for an article that isn't in the mbox.
13222
13223 2001-09-02 23:12:48  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13224
13225         * nnslashdot.el (nnslashdot-retrieve-headers-1): Get references
13226         right, and get all the comments.
13227
13228 2001-09-02  Simon Josefsson  <jas@extundo.com>
13229         Suggested by Dan Christensen <jdc+news@uwo.ca>
13230
13231         * nnfolder.el (nnfolder-request-update-info): Fix message.
13232
13233         * nnml.el (nnml-request-update-info): Ditto.
13234
13235 2001-09-01  Simon Josefsson  <jas@extundo.com>
13236
13237         * nnml.el (nnml-request-expire-articles): Also bind
13238         `nnml-current-group' and `nnml-article-file-alist' when using
13239         expiry-target. (Otherwise nnml will be in a inconsistent internal
13240         state causing all kind of problems.)
13241         (nnml-request-expire-articles): If `nnml-article-to-file' or
13242         `file-attributes' failes, return article as un-expirable instead
13243         of treating it as expired.
13244
13245 2001-08-31  Sam Steingold  <sds@gnu.org>
13246
13247         * imap.el (imap-mailbox-examine, imap-mailbox-examine-1): Fix a
13248         typo: `exmine' --> `examine'.
13249
13250 2001-08-30 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13251
13252         * nndoc.el (nndoc-forward-type-p): It is not a digest.
13253
13254 2001-08-30 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13255
13256         * nnml.el (nnml-check-directory-twice): Remove.
13257         (nnml-retrieve-headers): Ditto.
13258         (nnml-article-to-file): Use nnheader-directory-files-is-safe.
13259
13260 2001-08-30  Andrew Innes  <andrewi@gnu.org>
13261
13262         * nnheader.el (nnheader-directory-files-is-safe): No need to read
13263         directory twice on Windows, or on GNU Emacs-21.
13264
13265 2001-08-30  Andrew Innes  <andrewi@gnu.org>
13266
13267         * nnml.el (nnml-request-article): Use nnml-article-to-file-alist.
13268         (nnml-request-rename-group): Ditto.
13269         (nnml-active-number): Ditto.
13270         (nnml-request-create-group): Use nnml-directory-articles.
13271         (nnml-request-expire-articles): Use nnml-directory-articles, which
13272         gets list from nov database if available.
13273         (nnml-get-nov-buffer): New function.
13274         (nnml-open-nov): Use it.
13275         (nnml-update-file-alist): Use nnml-article-to-file-alist, which
13276         gets alist from nov database if available.
13277         (nnml-directory-articles): New function.
13278         (nnml-article-to-file-alist): New function.
13279
13280 2001-08-30  Andrew Innes  <andrewi@gnu.org>
13281
13282         * mm-decode.el (mm-display-external): Use `name' as filename, if
13283         `filename' attribute is not present.
13284
13285 2001-08-30  Andrew Innes  <andrewi@gnu.org>
13286
13287         * mail-source.el (mail-source-flash): New defcustom.
13288         (mail-source-new-mail-p): Ring visible bell if appropriate.
13289         (mail-source-start-idle-timer): Use unwind-protect to ensure idle
13290         timer is cleared even if mail check signals an error.
13291
13292 2001-08-29 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13293
13294         * gnus-sum.el (gnus-summary-move-article): Only update marks of
13295         type 'list.
13296
13297 2001-08-29 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13298
13299         * flow-fill.el (fill-flowed): eol might be point-max.
13300
13301 2001-08-27  Simon Josefsson  <jas@extundo.com>
13302
13303         * nnml.el (nnml-request-update-info): Fix message.
13304         (nnml-open-marks): Ditto.
13305
13306         * nnfolder.el (nnfolder-request-update-info):
13307         (nnfolder-open-marks): Fix message.
13308
13309 2001-08-25  Simon Josefsson  <jas@extundo.com>
13310
13311         * nnfolder.el (nnfolder-save-marks): Don't create directory named
13312         after group in ~/.
13313
13314 2001-08-25  Simon Josefsson  <jas@extundo.com>
13315         From Andreas Jaeger  <aj@suse.de>
13316
13317         * nnfolder.el (nnfolder-open-marks): Fix typo.
13318         * nnml.el (nnml-open-marks): Likewise.
13319
13320 2001-08-25  Simon Josefsson  <jas@extundo.com>
13321
13322         Make nnfolder groups self-contained as far as marks are concerned.
13323
13324         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
13325         (nnfolder-marks, nnfolder-marks-file-suffix): New variables.
13326         (nnfolder-open-server): Make marks directory.
13327         (nnfolder-request-delete-group): Delete marks file.
13328         (nnfolder-request-delete-group): Check of nov/marks file exist
13329         before deleting.
13330         (nnfolder-request-rename-group): Rename marks file.
13331         (nnfolder-request-rename-group): Only rename nov/mark if they exists.
13332         (nnfolder-request-set-mark, nnfolder-request-update-info)
13333         (nnfolder-group-marks-pathname, nnfolder-save-marks)
13334         (nnfolder-open-marks): New functions.
13335         (top-level): Require gnus.
13336
13337 2001-08-25 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13338
13339         * nnweb.el (nnweb-type-definition): Use google raw file.
13340         (nnweb-google-parse-1): Ditto.
13341         (nnweb-google-identity): Ditto.
13342         (nnweb-reference-wash-article): Move nnweb-decode-entities here.
13343         (nnweb-altavista-wash-article): Ditto.
13344         (nnweb-request-article): Remove nnweb-decode-entities.
13345
13346         * nnml.el: Require 'gnus.
13347
13348 2001-08-25  Simon Josefsson  <jas@extundo.com>
13349
13350         * nnml.el (nnml-marks-is-evil): Add doc.
13351
13352 2001-08-25  Simon Josefsson  <jas@extundo.com>
13353
13354         * nnml.el (nnml-save-marks): Wrap saving marks in a
13355         condition-case, to allow user to start Gnus if saving marks failed
13356         for some reason.
13357
13358 2001-08-24 16:05:38  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13359
13360         * gnus-spec.el (gnus-compile): Don't compile gnus-version.
13361
13362         * gnus-group.el (gnus-update-group-mark-positions): Bind
13363         gnus-group-update-hook to nil.
13364
13365 2001-08-24 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13366
13367         * mml.el (mml-generate-mime-1): Force as multibyte string.
13368
13369 2001-08-24 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13370
13371         * gnus-sum.el (gnus-summary-insert-line)
13372         (gnus-summary-prepare-threads): gnus-tmp-lines should be a string.
13373         From Martin Kretzschmar <Martin.Kretzschmar@inf.tu-dresden.de>
13374
13375         * gnus-spec.el (gnus-correct-substring): Take optional END.
13376
13377         * nnrss.el (nnrss-request-article): Remove \n.
13378         (nnrss-retrieve-headers): Lines number is -1.
13379
13380 2001-08-24  Simon Josefsson  <jas@extundo.com>
13381
13382         * gnus-group.el (gnus-info-clear-data): Call
13383         nnfoo-request-set-mark to propagate marks.  Fix bug:
13384         `gnus-group-update-line' doesn't update read range unless we call
13385         `gnus-get-unread-articles-in-group' first.
13386
13387         * nnimap.el (nnimap-request-set-mark): Don't propagate seen flags
13388         to server.
13389
13390 2001-08-23 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13391
13392         * gnus-util.el (gnus-create-info-command): Return an interactive
13393         function.
13394
13395 2001-08-23 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13396         From Katsumi Yamaoka <yamaoka@jpl.org>
13397
13398         * gnus-spec.el (gnus-parse-complex-format): Use equal.
13399
13400 2001-08-23 18:43:05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13401
13402         * gnus-sum.el (gnus-select-newsgroup): Use it.
13403
13404         * gnus-util.el (gnus-not-ignore): New function.
13405
13406         * lpath.el (featurep): Don't fbind char-int.
13407
13408         * gnus-util.el (gnus-create-info-command): New function.
13409
13410         * gnus-group.el (gnus-group-edit-group): Make C-c C-i go to the
13411         right node.
13412
13413         * gnus-sum.el (gnus-select-newsgroup): Clean up.
13414         (gnus-summary-limit-children): Use 'identity instead of `all'.
13415         (gnus-summary-limit-to-display-predicate): New command and
13416         keystroke.
13417
13418 2001-08-23 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13419
13420         * nnrss.el (nnrss-group-alist): Use fm-releases.rdf.
13421
13422         * gnus-spec.el (gnus-format-specs): Miss a right parenthesis.
13423
13424 2001-08-23 18:43:05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13425
13426         * gnus-spec.el: Add the Gnus version.
13427         (gnus-update-format-specifications): If the Gnus version changes,
13428         nix out the format spec cache.
13429
13430         * gnus.el (gnus-continuum-version): Made into a command and
13431         optionalize the VERSION.
13432
13433         * gnus-spec.el (gnus-parse-complex-format): Remove %C specs from
13434         the start of the lines.
13435
13436 2001-08-22 00:06:52  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13437
13438         * gnus.el (gnus-visual-p): Define function before use of
13439         function.
13440
13441 2001-08-21 23:28:02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13442
13443         * gnus-sum.el (gnus-adjust-marked-articles): Use new variable.
13444         (gnus-article-mark-to-type): New function.
13445         (gnus-update-missing-marks): Only update marks of type 'list.
13446
13447         * gnus.el (gnus-article-special-mark-lists): New variable.
13448
13449 2001-08-21 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13450
13451         * gnus-sum.el (gnus-summary-limit-children): Check 'all.
13452         (gnus-select-newsgroup): Still use 'all.
13453         (gnus-summary-initial-limit): Comparing with 'all.
13454
13455 2001-08-20 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13456
13457         * gnus-start.el (gnus-activate-group): If dont-check, don't update
13458         active.
13459
13460 2001-08-20 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13461
13462         * nnslashdot.el (nnslashdot-retrieve-headers-1): Replace
13463         nnslashdot-*-retrieve-headers.
13464         (nnslashdot-request-article): Fix for slashcode 2.2.
13465         (nnslashdot-make-tuple): New function.
13466         (nnslashdot-read-groups): Use it.
13467
13468 2001-08-20 01:34:03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13469
13470         * gnus.el (gnus-expand-group-parameters): Don't alter the variable
13471         list.
13472
13473         * gnus-sum.el (gnus-summary-move-article): Don't select article.
13474
13475 2001-08-20  Simon Josefsson  <jas@extundo.com>
13476
13477         * gnus-msg.el (gnus-inews-do-gcc): If archive server can't be
13478         opened, error instead of continuing (and exploding later).
13479
13480 2001-08-20 01:34:03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13481
13482         * gnus.el (gnus-expand-group-parameters): Return the parameter
13483         list.
13484
13485         * gnus-sum.el (gnus-summary-show-article): Doc fix.
13486         (gnus-summary-show-article): Guess at charset if required.
13487
13488         * gnus-spec.el (gnus-correct-substring): Stopped one character
13489         before we wanted.
13490
13491 2001-08-19  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
13492
13493         * earcon.el (earcon-auto-play): Remove unused option.
13494
13495 2001-08-19 16:14:41  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13496
13497         * gnus-score.el (gnus-score-headers): Move the "Scoring..."
13498         message down in levels, since it happens very fast.
13499
13500         * smiley-ems.el (smiley-update-cache): Respect the symbol version
13501         of smiley-regexp-alist.
13502
13503         * mm-view.el (mm-inline-text): Ignore vcard errors.
13504
13505         * gnus-art.el (gnus-ignored-headers): Added more junk headers.
13506
13507         * gnus-score.el (gnus-all-score-files): Use append instead of
13508         nconc.
13509
13510         * gnus.el (gnus-splash-face): Doc fix.
13511
13512         * mm-decode.el (mm-mailcap-command): Use
13513         mm-path-name-rewrite-functions.
13514         (mm-path-name-rewrite-functions): New variable.
13515
13516         * gnus-spec.el (gnus-parse-complex-format): React to ?=.
13517         (gnus-complex-form-to-spec): Insert tab.
13518         (gnus-spec-tab): New function.
13519
13520         * gnus-sum.el (gnus-select-newsgroup): Set the marks before
13521         entering the group.
13522
13523         * gnus-spec.el (gnus-complex-form-to-spec): Insert Lisp to match
13524         the positional spec.
13525         (gnus-parse-complex-format): React to %C.
13526
13527         * gnus-ems.el (gnus-char-width): Moved here.
13528
13529         * gnus-sum.el (gnus-select-newsgroup): Set
13530         gnus-newsgroup-articles.
13531         (gnus-unseen-mark): New variable.
13532         (gnus-newsgroup-unseen): Ditto.
13533         (gnus-newsgroup-seen): Ditto.
13534         (gnus-adjust-marked-articles): Use them.
13535         (gnus-update-marks): Use them.
13536         (gnus-summary-update-secondary-mark): Display.
13537         (gnus-summary-prepare-threads): Display.
13538
13539         * gnus-msg.el (gnus-inews-group-method): Use and return the
13540         method, not the server.
13541
13542 2001-08-19  Simon Josefsson  <jas@extundo.com>
13543
13544         * gnus-srvr.el (gnus-server-agent-face): New.
13545         (gnus-server-agent-face): New.
13546         (gnus-server-mode): Turn on font-lock-mode.
13547
13548         * gnus.el (gnus-server-visual): Add defgroup.
13549
13550 2001-08-19  Simon Josefsson  <jas@extundo.com>
13551         From Joe Casadonte <jcasadonte@northbound-train.com>
13552
13553         * gnus-srvr.el (gnus-server-opened-face, gnus-server-closed-face,
13554         gnus-server-denied-face): New.
13555         (gnus-server-opened-face, gnus-server-closed-face,
13556         gnus-server-denied-face): New.
13557         (gnus-server-font-lock-keywords): Add.
13558
13559 2001-08-19  Simon Josefsson  <jas@extundo.com>
13560
13561         * nnml.el (nnml-request-set-mark): Return nil.
13562         (nnml-save-marks): Use nnml-possibly-create-directory.
13563         (nnml-open-marks): Only work in temp buffer when inserting/reading
13564         .marks file.
13565
13566 2001-08-18 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13567
13568         * gnus.el (gnus-expand-group-parameters): Fix.
13569
13570         * gnus-spec.el (gnus-char-width): New function.
13571         (gnus-correct-substring, gnus-correct-length): Use it.
13572
13573         * message.el (message-required-mail-headers): Fix doc.
13574
13575 2001-08-18 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13576
13577         * gnus-sum.el (gnus-group-make-articles-read): gnus-request-set-mark.
13578
13579         * mm-decode.el (mm-save-part-to-file): Insert the handle.
13580
13581 2001-08-18 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13582
13583         * nnslashdot.el (nnslashdot-threaded-retrieve-headers):
13584         slashdot 2.2 (not fully fixed yet).
13585         (nnslashdot-request-article): Ditto.
13586
13587 2001-08-18  Simon Josefsson  <jas@extundo.com>
13588
13589         * gnus-util.el (gnus-remassoc, gnus-update-alist-soft): Moved from
13590         nnimap.
13591
13592         * nnimap.el (nnimap-remassoc, nnimap-update-alist-soft): Moved to
13593         gnus-util.
13594         (nnimap-request-update-info-internal): Use new functions.
13595
13596         * nnml.el (nnml-request-set-mark, nnml-request-update-info): Use
13597         new functions.
13598
13599 2001-08-18  Simon Josefsson  <jas@extundo.com>
13600
13601         Make nnml groups self-contained as far as marks are concerned.
13602
13603         * nnml.el (nnml-request-delete-group): Delete marks file.
13604         (nnml-request-rename-group): Move marks file.
13605         (nnml-marks-file-name, nnml-marks-is-evil, nnml-marks): New server
13606         variables.
13607         (nnml-request-set-mark, nnml-request-update-info): New server
13608         functions.
13609         (nnml-save-marks, nnml-open-marks): New functions.
13610
13611 2001-08-18  Simon Josefsson  <jas@extundo.com>
13612
13613         * gnus-sum.el (gnus-summary-move-article): Use `add' instead of
13614         `set' when setting marks.
13615
13616 2001-08-17 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13617
13618         * gnus.el (gnus-info-find-node): Take an argument.
13619
13620         * gnus-art.el (gnus-button-handle-info): New function.
13621         (gnus-url-unhex-string): Replace "+" with " ".
13622
13623 2001-08-17 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13624
13625         * message.el (message-check-news-header-syntax): Check bad From.
13626
13627 2001-08-18 00:14:45  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13628
13629         * gnus-spec.el (gnus-correct-length): New function.
13630         (gnus-correct-substring): New function.
13631         (gnus-tilde-max-form): Use it.
13632
13633 2001-08-17  Nevin Kapur  <nevin@jhu.edu>
13634
13635         * nnmh.el: Docstring changes as below.
13636
13637         * nnml.el: Docstring changes as below.
13638
13639         * nnbabyl.el: Docstring changes as below.
13640
13641         * nnmbox.el: Docstring changes as below.
13642
13643         * nnfolder.el: Added docstrings identifying each virtual server
13644         parameter.
13645
13646 2001-08-18  Simon Josefsson  <jas@extundo.com>
13647
13648         * mml.el (mml-menu): Collapse Attach, Insert and Security submenu.
13649
13650 2001-08-17  Bj\e,Av\e(Brn Torkelsson  <torkel@acc.kth.se>
13651
13652         * message.el: rename "Abort Message" to "Postpone Message".
13653         Remove "Attach file as MIME" from Message menu, it's already in
13654         the MIME menu.
13655
13656 2001-08-17 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13657
13658         * smime.el (smime-point-at-eol): eval-and-compile.
13659         (smime-make-temp-file): New function.
13660         (smime-sign-region, smime-encrypt-region, smime-decrypt-region):
13661         Use it.
13662
13663 2001-08-17 10:41:14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13664
13665         * gnus-agent.el (gnus-agent-fetch-group): Go online if offline.
13666         (gnus-agent-summary-fetch-group): New command and keystroke.
13667
13668         * gnus-art.el (gnus-insert-mime-button): Tiny clean-up.
13669         (gnus-mime-display-security): Make it respect
13670         gnus-unbuttonized-mime-type-p.
13671
13672         * gnus-sum.el (gnus-articles-to-read): Comments.
13673         (gnus-article-marked-p): New function.
13674         (gnus-summary-display-make-predicate): New function.
13675         (gnus-select-newsgroup): Use them.
13676
13677         * mm-decode.el (mm-save-part-to-file): Made it not error.
13678
13679 2001-08-17  Simon Josefsson  <jas@extundo.com>
13680
13681         * imap.el (imap-wait-for-tag): If process-status isn't open or
13682         run, return nil instead of sit-for looping.
13683
13684 2001-08-17 10:41:14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13685
13686         * lpath.el (featurep): fbind xml-parse-region.
13687
13688         * gnus.el (gnus-message-archive-method): Default to "archive".
13689         (gnus-message-archive-method): Doc fix.
13690         (gnus-parameters-get-parameter): Cleaned up.
13691         (gnus-expand-group-parameter): New function.
13692
13693         * gnus-start.el (gnus-setup-news): Push the archive server only
13694         the server list.
13695
13696         * mml.el (mml-menu): Changed name to "Attachments".
13697
13698         * mm-decode.el (mm-destroy-postponed-undisplay-list): Only message
13699         when there is something to detroy.
13700
13701 2001-05-21 17:11:46  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13702
13703         * gnus-srvr.el (gnus-server-browse-in-group-buffer): Default to
13704         nil.
13705
13706 2001-08-15  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
13707
13708         * gnus-delay.el (gnus-delay-article): Allow "01:23" time spec,
13709         which specifies a time today or tomorrow.
13710
13711 2001-08-15  Simon Josefsson  <jas@extundo.com>
13712         From Pavel@Janik.cz (Pavel Jan\e,Am\e(Bk)
13713
13714         * gnus-agent.el (gnus-agent-make-mode-line-string)
13715         (gnus-agent-toggle-plugged): Use new API.
13716
13717 2001-08-14  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
13718
13719         * gnus-delay.el (gnus-delay-send-drafts): Fix check whether
13720         deadline has expired.
13721
13722 2001-08-12  Simon Josefsson  <jas@extundo.com>
13723         Suggested by Kai.Grossjohann@CS.Uni-Dortmund.DE
13724
13725         Support `recent' mark indicating newly arrived messages (to
13726         separate from old but unread messages).
13727
13728         * nnimap.el (nnimap-retrieve-groups): Push dummy article into
13729         `nnmail-split-history' if recent is > 0.
13730         (nnimap-request-update-info-internal): Update `recent' marks.
13731         (nnimap-request-set-mark): Never set `recent' marks.
13732         (nnimap-mark-to-predicate-alist, nnimap-mark-to-flag-alist): Add
13733         recent.
13734
13735         * gnus-sum.el (gnus-recent-mark): New mark.
13736         (gnus-newsgroup-recent): New variable.
13737         (gnus-summary-local-variables): Add gnus-newsgroup-recent.
13738         (gnus-summary-prepare-threads): Mark recent articles.
13739         (gnus-summary-add-mark): Support recent.
13740         (gnus-summary-update-secondary-mark): Support recent.
13741
13742         * gnus.el (gnus-article-mark-lists): Add recent.
13743
13744 2001-08-12  Simon Josefsson  <jas@extundo.com>
13745
13746         * mm-bodies.el (mm-decode-content-transfer-encoding): Returns
13747         whether successful decoding took place.  Add doc.
13748
13749 2001-08-12  Simon Josefsson  <jas@extundo.com>
13750         Suggested by Per Abrahamsen <abraham@dina.kvl.dk>
13751
13752         * gnus.el (gnus-summary-line-format, gnus-parameters):
13753         * gnus-gl.el (gnus-summary-grouplens-line-format):
13754         * gnus-salt.el (gnus-summary-pick-line-format):
13755         * gnus-spec.el (gnus-format-specs): %n is 23 chars.
13756
13757 2001-08-11 09:40:00  Karl Kleinpaste  <karl@charcoal.com>
13758         Committed by Kai Gro\e,b_\e(Bjohann.
13759
13760         * gnus-score.el (gnus-score-string): Fix `match' regexp
13761         for `extra' header case.
13762
13763 2001-08-10 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13764
13765         * nnmbox.el (nnmbox-read-mbox): No warning.
13766
13767 2001-08-10 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13768
13769         * nndoc.el (nndoc-article-type): Fix doc.
13770         (nndoc-generate-article-function): New variable.
13771         (nndoc-dissection-function): New variable.
13772         (nndoc-type-alist): Add oe-dbx.
13773         (nndoc-oe-dbx-type-p): New function.
13774         (nndoc-oe-dbx-dissection): New function.
13775         (nndoc-oe-dbx-generate-article): New function.
13776
13777 2001-08-11  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
13778
13779         * gnus-delay.el (gnus-delay-send-drafts): Cleaner way to check
13780         whether deadline has been reached.  Patch from Dan Nicolaescu
13781         <dann@godzilla.ics.uci.edu>.
13782
13783 2001-08-10 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13784
13785         * gnus-ml.el (turn-on-gnus-mailing-list-mode): Use
13786         gnus-group-find-parameter. Suggested by Janne Rinta-Manty
13787         <rintaman@cs.Helsinki.FI>.
13788
13789         * mail-source.el (mail-source-movemail): The error buffer is
13790         modified, but nothing in it.
13791
13792 2001-08-10 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13793
13794         * message.el (message-bogus-system-names): New variable.
13795         (message-make-fqdn): Use it.
13796
13797 2001-08-09 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13798
13799         * nndraft.el (nndraft-request-group): Use
13800         nndraft-auto-save-file-name.
13801
13802 2001-08-09  Simon Josefsson  <jas@extundo.com>
13803
13804         * mm-view.el (mm-view-pkcs7-decrypt): Operate in current buffer.
13805         Don't ask whether to decrypt.  Just leave result in buffer (don't
13806         call mm).
13807
13808         * mm-decode.el (mm-dissect-buffer): Possibly verify/decrypt single
13809         parts as well.
13810         (mm-inline-media-tests): Ignore application/{x-,}pkcs7-mime.
13811         (mm-possibly-verify-or-decrypt): Support application/{x-,}pkcs7-mime.
13812
13813 2001-08-09  Simon Josefsson  <jas@extundo.com>
13814
13815         * mm-decode.el (mm-insert-part): Return decoding success status.
13816         (mm-save-part-to-file): Error if decoding failed.
13817
13818 2001-08-09 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13819
13820         * message.el (message-tab): Use indent-relative.
13821         (message-mode): Don't bind indent-line-function to indent-relative.
13822
13823 2001-08-09  Simon Josefsson  <jas@extundo.com>
13824
13825         * message.el (message-get-reply-headers): Fix string. Suggested by
13826         Christoph Conrad <cc@cli.de>.
13827
13828 2001-08-08 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13829
13830         * message.el (message-tab): Use the current value of
13831         indent-line-function.
13832         (message-mode): Bind indent-line-function to indent-relative.
13833
13834 2001-08-08  Simon Josefsson  <jas@extundo.com>
13835
13836         * imap.el (imap-gssapi-auth-p, imap-kerberos4-auth-p): Also check
13837         whether `imtest' is installed.
13838
13839 2001-08-04  ShengHuo ZHU  <zsh@cs.rochester.edu>
13840         Trivial patch from Nuutti Kotivuori  <nuutti.kotivuori@smarttrust.com>
13841
13842         * gnus-sum.el (gnus-summary-show-article): Call
13843         gnus-summary-update-secondary-secondary-mark.
13844         * gnus-sum.el (gnus-summary-edit-article-done): Ditto.
13845         * gnus-sum.el (gnus-summary-reparent-thread): Ditto.
13846
13847 2001-08-07 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13848
13849         * gnus-sum.el (gnus-summary-make-menu-bar): Misc -> Gnus.
13850
13851         * gnus-group.el (gnus-group-make-menu-bar): Ditto.
13852
13853         * mm-uu.el (mm-uu-dissect): Autoload. From Gerd M\e,Av\e(Bllmann
13854         <gerd@gnu.org>.
13855
13856         * gnus-art.el (gnus-output-to-file): Bind file-name-coding-system.
13857
13858         * gnus-util.el (gnus-output-to-rmail): Ditto.
13859         (gnus-output-to-mail): Ditto.
13860
13861         * nnmail.el (nnmail-pathname-coding-system): Set default to nil.
13862
13863 2001-08-06  Florian Weimer  <fw@deneb.enyo.de>
13864
13865         * message.el (message-indent-citation): Use
13866         `message-yank-cited-prefix' for empty lines.
13867
13868 2001-08-05  Florian Weimer  <fw@deneb.enyo.de>
13869
13870         * message.el (message-indent-citation): Quote only lines starting
13871         with ">" using `message-yank-cited-prefix'.
13872
13873 2001-08-05  Nuutti Kotivuori  <nuutti.kotivuori@smarttrust.com>
13874         Trivial patch.
13875
13876         * gnus-cache.el (gnus-cache-possibly-enter-article): Use
13877         gnus-cache-fully-p.
13878
13879 2001-08-04  Simon Josefsson  <jas@extundo.com>
13880
13881         * gnus-cache.el (gnus-cache-possibly-update-active): Create active
13882         file if it doesn't exist (by calling gnus-cache-read-active).
13883
13884 2001-08-04  Simon Josefsson  <jas@extundo.com>
13885
13886         * gnus-cache.el (gnus-cache-possibly-enter-article): Revert.
13887         (gnus-cache-passively-or-fully-p): Removed.
13888         (gnus-cache-fully-p): Fix it.
13889
13890         * mm-view.el (mm-pkcs7-signed-magic): Support more ASN.1 lengths.
13891
13892 2001-08-04  Simon Josefsson  <jas@extundo.com>
13893
13894         * gnus-cache.el (gnus-cache-fully-p)
13895         (gnus-cache-passively-or-fully-p): New functions.
13896         (gnus-cache-possibly-enter-article): Cosmetic change, use
13897         `g-c-p-o-f-p'.
13898         (gnus-cache-possibly-enter-article): Use `g-c-p-u-a'; last change
13899         was bogus (`g-c-p-a-a' does not change active info, just change
13900         the functions parameters).
13901         (gnus-cache-possibly-remove-articles-1): Make sure articles are
13902         not removed in groups that match `gnus-uncacheable-groups'.
13903
13904         Reported and modifications based on discussions with Nuutti
13905         Kotivuori <nuutti.kotivuori@smarttrust.com>.
13906
13907 2001-08-04  Simon Josefsson  <jas@extundo.com>
13908         Trivial patch from Nuutti Kotivuori  <nuutti.kotivuori@smarttrust.com>
13909
13910         * gnus-cache.el (gnus-cache-possibly-update-active): New function;
13911         calls `gnus-cache-update-active' if bounds has been extended.
13912
13913 2001-08-04 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13914
13915         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Insert
13916         before remove.
13917         (gnus-mime-security-show-details): Ditto.
13918
13919 2001-08-04  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
13920
13921         * nnmail.el (nnmail-split-fancy-with-parent): Correct `mapconcat'
13922         syntax.  Protect string-match against nil string and regexp.
13923
13924 2001-08-03 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13925
13926         * mm-util.el (mm-find-charset-region): Remove control-1.
13927
13928 2001-08-03 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13929
13930         * mm-decode.el (mm-readable-p): Emacs 20 takes one argument.
13931
13932 2001-08-04  Simon Josefsson  <jas@extundo.com>
13933
13934         * smime.el (smime-sign-region, smime-encrypt-region): Fix details
13935         buffer.  Delete MIME-Version header.
13936
13937 2001-08-03  Simon Josefsson  <jas@extundo.com>
13938
13939         * gnus-cache.el (gnus-cache-possibly-enter-article): The article
13940         that is entered does not necessarily have the highest article
13941         number in the group, so use `gnus-cache-possibly-alter-active'
13942         instead of `gnus-cache-update-active'.
13943
13944 2001-08-03 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13945
13946         * mml2015.el (mml2015-gpg-extract-signature-details): Don't barf.
13947
13948 2001-08-03  Simon Josefsson  <jas@extundo.com>
13949
13950         * mml.el (mml-menu): Rename from MML to Mime. Collapse Security
13951         menu.
13952
13953 2001-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13954
13955         * gnus.el (post-method): New group parameter.  It also provides
13956         the user option `gnus-post-method-alist' and the internal function
13957         `gnus-parameter-post-method'.
13958
13959         * gnus-msg.el (gnus-post-method): Bind the value of
13960         `gnus-post-method' to the group parameter if it is defined.
13961
13962 2001-08-02  Simon Josefsson  <jas@extundo.com>
13963
13964         * smime.el (smime-extra-arguments): Removed.
13965         (smime-call-openssl-region): Don't use it.
13966
13967 2001-08-02  Simon Josefsson  <jas@extundo.com>
13968
13969         * smime.el (smime-sign-region): Handle stderr.
13970         (smime-encrypt-region): Ditto.
13971
13972         * mm-view.el (mm-pkcs7-signed-magic): Make it a regexp.  Don't
13973         match the ASN.1 length bytes.
13974         (mm-pkcs7-enveloped-magic): Ditto.
13975         (mm-view-pkcs7-get-type): Don't regexp quote.
13976
13977 2001-08-01 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13978         From Andreas Fuchs <asf@void.at>
13979
13980         * mml2015.el (mml2015-trust-boundaries-alist): Typo.
13981
13982 2001-08-01 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13983
13984         * gnus-art.el (gnus-header-button-alist): References regexp.
13985
13986 2001-08-01  Gerd Moellmann  <gerd@gnu.org>
13987
13988         * mm-view.el (autoload): Don't autoload `diff-mode' if it's
13989         already fboundp.  Add INTERACTIVE arg to autoload form.
13990
13991 2001-08-01 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13992
13993         * nnslashdot.el (nnslashdot-init): Add as gnus buffer.
13994
13995         * nnmail.el (nnmail-cache-open): Ditto.
13996
13997 2001-07-31 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
13998
13999         * gnus-art.el (gnus-button-fetch-group): Fix the regexp.
14000
14001 2001-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14002
14003         * gnus-msg.el (gnus-post-method): Refer to `gnus-parameters'.
14004
14005 2001-07-31 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14006         Originally from Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14007
14008         * gnus-agent.el (gnus-agent-make-mode-line-string): New function.
14009         (gnus-agent-toggle-plugged): Use it.
14010
14011 2001-07-31  ShengHuo ZHU  <zsh@cs.rochester.edu>
14012
14013         * gnus-start.el (gnus-startup-file-coding-system): Revert to binary.
14014         (gnus-ding-file-coding-system): New variable.
14015         (gnus-read-newsrc-el-file, gnus-save-newsrc-file)
14016         (gnus-slave-save-newsrc): Use it.
14017
14018 2001-07-31  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14019
14020         * gnus-delay.el (gnus-delay-initialize): Use standard define-key
14021         syntax.
14022
14023 2001-07-30 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14024         Originally from Andreas Fuchs <asf@void.at>
14025
14026         * mml2015.el (mml2015-trust-boundaries-alist): New variable.
14027         (mml2015-gpg-pretty-print-fpr): New function.
14028         (mml2015-gpg-extract-signature-details): More details, rename from
14029         `m-g-e-from'.
14030         (mml2015-gpg-verify): Use them.
14031         (mml2015-gpg-clear-verify): Use them.
14032
14033 2001-07-31  Simon Josefsson  <jas@extundo.com>
14034
14035         * mml-smime.el (mml-smime-sign, mml-smime-encrypt): Goto end of
14036         buffer when done.
14037
14038 2001-07-30  Simon Josefsson  <jas@extundo.com>
14039
14040         * smime.el (smime-call-openssl-region): Revert previous change,
14041         just pass on buf to `call-process-region'.
14042         (smime-verify-region): Doc fix.  Don't message stuff.  Use
14043         `smime-new-details-buffer'.  Inserts error messages into buffer.
14044         (smime-noverify-region): Ditto.
14045         (smime-decrypt-region): Ditto.  Handles stderr separately.
14046         (smime-verify-buffer, smime-noverify-buffer)
14047         (smime-decrypt-buffer): Doc fix.
14048         (smime-new-details-buffer): New function.
14049         (smime-pkcs7-region, smime-pkcs7-certificates-region)
14050         (smime-pkcs7-email-region): Use `smime-new-details-buffer'.
14051         (smime-sign-region, smime-encrypt-region): Don't use
14052         `insert-buffer'.
14053
14054         * mml-smime.el (mml-smime-verify): Fix security button strings.
14055
14056 2001-07-30 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14057
14058         * gnus-art.el (gnus-mime-save-part-and-strip): Save
14059         gnus-article-mime-handles.
14060
14061 2001-07-29  Simon Josefsson  <jas@extundo.com>
14062
14063         * mail-source.el (top-level): Require message for message-directory.
14064         (mail-source-directory): Change default to message-directory.
14065
14066         * smime.el (smime-keys, smime-CA-directory, smime-CA-file)
14067         (smime-certificate-directory, smime-openssl-program)
14068         (smime-encrypt-cipher, smime-dns-server): Fix doc (leading "*").
14069         (smime-extra-arguments): New variable.
14070         (smime-dns-server): Fix customize group.
14071         (smime-call-openssl-region): Use `smime-extra-arguments'.
14072
14073 2001-07-29  Simon Josefsson  <jas@extundo.com>
14074         From Vladimir Volovich <vvv@vsu.ru>
14075
14076         * smime.el (smime-call-openssl-region): Ignore stderr.
14077
14078 2001-07-29  Simon Josefsson  <jas@extundo.com>
14079         From Christoph Conrad <christoph.conrad@gmx.de>
14080
14081         * gnus-agent.el (gnus-agent-save-group-info): Don't destroy active
14082         file.
14083
14084 2001-07-29  Simon Josefsson  <jas@extundo.com>
14085
14086         * mm-view.el (mm-view-pkcs7-decrypt): Adhere to `mm-decrypt-option'.
14087
14088         Support S/MIME decryption.
14089
14090         * mm-decode.el (mm-inline-media-tests):
14091         (mm-inlined-types):
14092         (mm-automatic-display):
14093         (mm-attachment-override-types): Add application/{x-,}pkcs7-mime.
14094
14095         * mm-view.el (mm-pkcs7-signed-magic):
14096         (mm-pkcs7-enveloped-magic): New variables.
14097         (mm-view-pkcs7-get-type): New function; identify PKCS#7 type.
14098         (mm-view-pkcs7): New function; mm viewer for PKCS#7 blobs.
14099         (mm-view-pkcs7-decrypt): New function; mm viewer for encrypted
14100         PKCS#7 blobs.
14101
14102         * smime.el (smime-decrypt-region): Expand keyfile.
14103
14104 2001-07-29  Simon Josefsson  <jas@extundo.com>
14105
14106         * nntp.el (nntp-open-ssl-stream): Don't mess with internal
14107         `ssl.el' variables.
14108
14109         * gnus-agent.el (gnus-agent-save-group-info): Delete everything
14110         but line instead of narrowing to it, because `nnmail-parse-active'
14111         calls widen.  Thanks to Christoph Conrad
14112         <christoph.conrad@gmx.de>.
14113
14114 2001-07-29  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14115
14116         * gnus.el (gnus-summary-line-format): Mention `gnus-sum-thread-*'
14117         for %B spec.
14118
14119         * gnus-sum.el (gnus-summary-prepare-threads): If
14120         gnus-sum-thread-tree-root is nil, use subject instead.
14121         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-single-indent)
14122         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
14123         (gnus-sum-thread-tree-leaf-with-other)
14124         (gnus-sum-thread-tree-single-leaf): Documentation.
14125         (gnus-sum-thread-tree-single-indent): Allow nil.
14126
14127 2001-07-28 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14128
14129         * message.el (message-fill-paragraph): Do nothing if the user
14130         wants filladapt-mode.
14131
14132 2001-07-27 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14133
14134         * mm-decode.el (mm-image-type-from-buffer): New function.
14135         (mm-get-image): Use it.
14136
14137 2001-07-27 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14138
14139         * gnus.el (gnus-large-newsgroup): Add doc, "If it is nil, ..."
14140
14141         * gnus-art.el (gnus-mime-view-all-parts): buffer-read-only covers
14142         mm-display-parts too.
14143
14144 2001-07-27 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14145
14146         * nnfolder.el (nnfolder-request-accept-article): Bind
14147         nntp-server-buffer.
14148
14149         * nnmail.el (nnmail-parse-active): Read from buffer instead of
14150         nntp-server-buffer.
14151
14152 2001-07-27 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14153
14154         * message.el (message-check-news-header-syntax): Use
14155         message-post-method.
14156         (message-send-news): Bind message-post-method.
14157
14158 2001-07-27 07:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14159
14160         * mml.el (mml-tweak-type-alist): New variable.
14161         (mml-tweak-function-alist): New variable.
14162         (mml-tweak-part): New function.
14163         (mml-generate-mime-1): Use it.
14164
14165 2001-07-26 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14166
14167         * nnfolder.el (nnfolder-request-accept-article): Replace
14168         nnfolder-request-list.
14169
14170 2001-07-27  Simon Josefsson  <jas@extundo.com>
14171
14172         * nnimap.el (nnimap-open-server): Set nnimap-server-buffer if
14173         nnoo-change-server failed to do it.
14174
14175 2001-07-26 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14176
14177         * gnus.el (gnus-parameters): Make it customizable.
14178
14179 2001-07-26 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14180
14181         * gnus-art.el (gnus-mm-display-part): Narrow to point if eobp.
14182
14183         * message.el (message-set-auto-save-file-name): More
14184         poor-system-types.
14185
14186         * mailcap.el (mailcap-parse-mimetypes): poor-system-types.
14187
14188         * gnus-ems.el (nnheader-file-name-translation-alist): M$Windows-NT
14189         supports +.
14190
14191 2001-07-26 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14192
14193         * mm-decode.el (mm-readable-p): New function.
14194         (mm-inline-media-tests): Fix the default testers.
14195
14196 2001-07-26  Simon Josefsson  <jas@extundo.com>
14197
14198         * nnimap.el (nnimap-version): Bump version number.
14199
14200 2001-07-26 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14201         From Steven E. Harris <seh@speakeasy.org>
14202
14203         * nnheader.el (nnheader-translate-file-chars): cygwin32 is running
14204         in M$Windows too.
14205
14206 2001-07-26  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14207
14208         * gnus-delay.el (gnus-delay-send-drafts): Don't `error'.
14209
14210 2001-07-25 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14211
14212         * gnus-bcklg.el (gnus-backlog-shutdown): Make interactive.
14213
14214         * mm-decode.el (mm-get-image): Guess then use the type.
14215
14216         * gnus-art.el (gnus-mime-view-part-as-type): Don't copy cache.
14217
14218 2001-07-25 12:54:00  Danny Siu  <dsiu@adobe.com>
14219
14220         * gnus-sum.el (gnus-summary-prepare-threads): Shouldn't do tree
14221         display (%B) for threads if threading is off.
14222
14223 2001-07-25 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14224         From Henrik Enberg <henrik@enberg.org>
14225
14226         * gnus-msg.el: Customization patch.
14227
14228 2001-07-25 22:22:22  Raymond Scholz  <rscholz@zonix.de>
14229
14230         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups): New
14231         variable.
14232         (nnmail-split-fancy-with-parent): Ignore certain groups.
14233
14234 2001-07-25 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14235
14236         * gnus-util.el (gnus-byte-compile): New function.
14237         (gnus-use-byte-compile): New variable.
14238         (gnus-make-sort-function): Use it.
14239
14240         * nnmail.el (nnmail-get-new-mail): Use it.
14241
14242         * gnus-agent.el (gnus-category-make-function): Simple function or
14243         compiled function.
14244         (gnus-agent-fetch-group-1): Don't use (caaddr predicate).
14245
14246         * gnus-gl.el (bbb-build-rate-command): Remove quote before lambda.
14247         * gnus-topic.el (gnus-topic-sort-topics-1): Ditto.
14248         (gnus-topic-sort-topics-1): Use gnus-byte-compile.
14249
14250         * message.el (message-check-news-header-syntax): Remove quote.
14251
14252 2001-07-24 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14253
14254         * message.el (message-use-mail-followup-to): `t' is not a
14255         documented value.
14256
14257 2001-07-24 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14258
14259         * gnus-sum.el (gnus-summary-display-arrow): Test fboundp.
14260
14261 2001-07-24 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14262
14263         * mm-encode.el (mm-encode-buffer): Don't use 7bit encoding if
14264         there are long lines.
14265
14266 2001-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14267
14268         * dgnushack.el (copy-list): New compiler macro.
14269
14270 2001-07-24 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14271
14272         * message.el (message-bounce): If no Return-Path, the whole
14273         content is considered as the original message.
14274
14275         * nnml.el (nnml-check-directory-twice): New variable.
14276         (nnml-article-to-file): Use it.
14277         (nnml-retrieve-headers): Hack it.
14278
14279 2001-07-24 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14280
14281         * gnus-win.el (gnus-buffer-configuration): New configure.
14282
14283         * gnus-art.el (gnus-mm-display-part): Don't select-window if it is
14284         not alive.
14285
14286         * mm-decode.el (mm-remove-part): Don't murder the current window (nil).
14287         (mm-display-external): Use display-term configure.
14288
14289 2001-07-24  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14290
14291         * gnus-delay.el (gnus-delay-default-hour): New variable.
14292         (gnus-delay-article): Allow specific date in YYYY-MM-DD format.
14293
14294 2001-07-23 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14295         From Karl Kleinpaste <karl@charcoal.com>
14296
14297         * gnus-sum.el (gnus-summary-line-format-alist): Add %B.
14298         (gnus-summary-prepare-threads): Ditto.
14299
14300         * gnus.el (gnus-summary-line-format): Add %B.
14301
14302 2001-07-23 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14303
14304         * gnus-sum.el (gnus-articles-to-read): Use gnus-group-decoded-name.
14305
14306         * mm-util.el (mm-string-as-multibyte): New function.
14307
14308         * nnmh.el (nnmh-request-list-1): Encode, not decode!
14309
14310 2001-07-23 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14311
14312         * mm-util.el (mm-universal-coding-system): New variable.
14313
14314         * gnus-start.el (gnus-startup-file-coding-system): Use it.
14315
14316         * score-mode.el (score-mode-coding-system): Use it.
14317
14318 2001-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14319
14320         * gnus-start.el (gnus-setup-news): Call
14321         `gnus-check-bogus-newsgroups' just after the native server is
14322         opened.
14323
14324 2001-07-23  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14325
14326         * nnmail.el (nnmail-do-request-post): Util function to be used by
14327         `nnchoke-request-post' for all nnmail-derived backends.
14328
14329         * nnml.el (nnml-request-post): Use it.
14330
14331         * gnus.el (gnus-valid-select-methods): nnml is a post-mail
14332         backend, for it groks nnml-request-post.
14333
14334         * gnus-group.el (gnus-group-highlight, gnus-group-highlight-line):
14335         Treat `mail-post' backends like `mail' backends, not like `news'
14336         backends.
14337
14338 2001-07-22 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14339
14340         * gnus-msg.el (gnus-setup-message): make-local-hook.
14341
14342 2001-07-22  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14343
14344         * gnus-delay.el (gnus-delay-article): Fix `read-string' for
14345         XEmacs.  Allow more units.  Submitted by Karl Kleinpaste
14346         <karl@charcoal.com>, slightly changed by Kai.
14347
14348         * message.el (message-check-news-header-syntax): When checking
14349         whether the groups exist, check the right server based on
14350         `gnus-post-method'.
14351
14352 2001-07-21  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14353
14354         * gnus-delay.el: New file.
14355
14356 2001-07-21 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14357
14358         * mm-util.el (mm-read-coding-system): Take two arguments.
14359
14360         * gnus-sum.el (gnus-summary-show-article): Use
14361         mm-read-coding-system.
14362
14363         * gnus-art.el (article-de-quoted-unreadable):
14364         (article-de-base64-unreadable, article-wash-html):
14365         (gnus-mime-inline-part, gnus-mime-view-part-as-charset): Ditto.
14366
14367 2001-07-21  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14368
14369         * nnml.el (nnml-request-post): New function.  Can be used for
14370         annotations in nnml groups.
14371
14372 2001-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14373
14374         * nntp.el (nntp-request-newgroups): Use UTC date for NEWGROUPS
14375         command.
14376
14377         * gnus-start.el (gnus-find-new-newsgroups): Use
14378         `message-make-date' instead of `current-time-string'.
14379         (gnus-ask-server-for-new-groups): Ditto.
14380         (gnus-check-first-time-used): Ditto.
14381
14382 2001-07-20 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14383
14384         * gnus-score.el (gnus-home-score-file): nnheader-translate-file-chars.
14385
14386 2001-07-18  Per Abrahamsen  <abraham@dina.kvl.dk>
14387
14388         * message.el (message-shorten-references): Change `maxcount' and
14389         `cut' to obey USEFOR draft 5.
14390
14391 2001-07-12  Colin Walters  <walters@cis.ohio-state.edu>
14392
14393         * gnus-sum.el (gnus-summary-display-arrow): New variable.
14394         (gnus-summary-set-article-display-arrow): New function.
14395         (gnus-summary-goto-subject): Use it.
14396
14397 2001-07-18 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14398
14399         * gnus-sum.el (gnus-summary-import-article): Insert date if
14400         doesn't exist.
14401
14402 2001-07-18 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14403
14404         * mml.el (mml-content-type-parameters): New variable.
14405         (mml-content-disposition-parameters): New variable.
14406         (mml-insert-mime-headers): Use them.
14407         (mml-parse-1): Accept charset.
14408
14409 2001-07-17 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14410
14411         * gnus-group.el (gnus-group-select-group): Doc fix.
14412
14413         * gnus-eform.el (gnus-edit-form-done): Return nil if end-of-file.
14414
14415 2001-07-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14416
14417         * dgnushack.el (dgnushack-make-auto-load): Advise `make-autoload'
14418         to handle `define-derived-mode'.
14419
14420 2001-07-16 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14421         From:  Stefan Monnier  <monnier@cs.yale.edu>
14422
14423         * message.el (message-mode): Use define-derived-mode.
14424         (message-tab): message-completion-alist.
14425
14426         * imap.el (imap-interactive-login): Use make-local-variable.
14427         (imap-open): Ditto.
14428         (imap-authenticate): Ditto.
14429
14430         * gnus-msg.el (gnus-setup-message): Change-major-mode-hook.
14431
14432         * gnus-art.el (gnus-article-edit-mode): Use define-derived-mode.
14433
14434 2001-07-16  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14435
14436         * message.el (message-citation-line-function): Refer to
14437         gnus-cite-attribution-suffix.
14438
14439 2001-07-15  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14440
14441         * gnus-art.el,...: Error convention changes.
14442
14443 2001-07-13 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14444
14445         * gnus-sum.el (gnus-rebuild-thread): Count hidden lines too.
14446
14447 2001-07-13 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14448
14449         * nnrss.el (nnrss-read-group-data): Nuke emacs-lisp-mode-hook.
14450         (nnrss-read-server-data): Ditto.
14451
14452 2001-07-13 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14453
14454         * gnus-setup.el (gnus-use-installed-gnus): Typo.
14455         * Cleanup files.
14456         From Pavel@Janik.cz (Pavel Jan\e,Am\e(Bk).
14457
14458 2001-07-13 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14459
14460         * gnus.el (gnus-summary-line-format): Add %o.
14461
14462         * gnus-sum.el (gnus-summary-pipe-output): Don't configure as pipe
14463         unless shell outputs something.
14464
14465 2001-07-13 07:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14466
14467         * gnus-art.el (gnus-boring-article-headers): Better doc.
14468         (article-hide-headers): Better regexp.
14469         Suggested by Matt Swift <swift@alum.mit.edu>.
14470
14471         * nnheader.el (nnheader-max-head-length): Better doc.
14472         (nnheader-header-value): Skip spaces.
14473         (nnheader-parse-head): Remove space.
14474         Suggested by Matt Swift <swift@alum.mit.edu>.
14475
14476         * gnus-sum.el (gnus-summary-show-raw-article): New function.
14477         (gnus-get-newsgroup-headers): Remove space.
14478
14479 2001-07-12 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14480
14481         * gnus-msg.el (gnus-msg-treat-broken-reply-to): Add force.
14482         (gnus-summary-reply): Use it.
14483         (gnus-summary-reply-broken-reply-to): New function.
14484         (gnus-msg-force-broken-reply-to): New function.
14485
14486         * mm-view.el (mm-inline-text): Showing as text/plain when error.
14487
14488 2001-07-12 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14489
14490         * gnus-draft.el (gnus-draft-setup): Restore gnus-newsgroup-name.
14491
14492 2001-07-12 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14493
14494         * mm-decode.el (mm-external-terminal-program): New variable.
14495         (mm-display-external): Use it. Use term to display when no
14496         window-system.
14497
14498 2001-07-12  Bj\e,Av\e(Brn Torkelsson  <torkel@hpc2n.umu.se>
14499
14500         * gnus-srvr.el (gnus-browse-make-menu-bar): Changed one of the
14501         Browse->Next entries to Browse->Prev
14502
14503 2001-07-11 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14504
14505         * gnus-msg.el (gnus-inews-do-gcc): Don't test gnus-alive-p.
14506
14507 2001-07-11 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14508
14509         * mm-encode.el (mm-content-transfer-encoding-defaults): Use base64
14510         for the default encoding.
14511
14512         * nnrss.el (nnrss-url-field): New field.
14513         (nnrss-request-article): Add newsgroups.
14514
14515         * nnfolder.el (nnfolder-read-folder): Force to use a multibyte buffer.
14516
14517 2001-07-11 04:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14518
14519         * nndraft.el (nndraft-request-restore-buffer): Don't remove Date.
14520
14521         * gnus-draft.el (gnus-draft-edit-message): Remove Date here.
14522         (gnus-draft-setup): Remove backlog.
14523
14524 2001-07-10  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14525
14526         * gnus-logic.el, gnus-srvr.el, gnus-vm.el, nnheaderxm.el, nnoo.el:
14527         Cleanup.
14528
14529 2001-07-09 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14530
14531         * gnus-msg.el (gnus-bug): Erase buffer.
14532
14533         * nnfolder.el (nnfolder-possibly-change-group): Don't create group.
14534
14535 2001-07-09 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14536
14537         * mm-decode.el (mm-attachment-override-p): Fix typo.
14538
14539 2001-03-19 05:28:00  Katsumi Yamaoka  <yamaoka@jpl.org>
14540
14541         * gnus-kill.el (gnus-execute): Work with the extra headers.
14542         * gnus-sum.el (gnus-summary-execute-command): Ditto.
14543
14544 2001-07-09 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14545
14546         * mm-view.el (mm-inline-text): w3-coding-system-for-mime-charset
14547         may not defined. From: Raja R Harinath <harinath@cs.umn.edu>.
14548
14549         * message.el (message-send-mail-real-function): New variable.
14550         (message-send-mail-partially, message-send-mail):
14551
14552         * nngateway.el (nngateway-request-post): Use it.
14553
14554         * gnus-agent.el (gnus-agentize): Use it.
14555
14556         * nnsoup.el (nnsoup-old-functions, nnsoup-set-variables)
14557         (nnsoup-revert-variables): Use it.
14558
14559 2001-07-09  Colin Walters  <walters@cis.ohio-state.edu>
14560
14561         * mm-decode.el (mm-inline-media-tests): Default to displaying as
14562         text/plain if the type doesn't match any other media types.
14563         (mm-inlined-types): Doc fix.
14564         (mm-display-inline): Revert previous change (now handled by a
14565         default type in `mm-inline-media-tests'.
14566         (mm-inlinable-p): Revive.
14567         (mm-display-part): Call `mm-inlinable-p'.
14568         (mm-attachment-override-p): Ditto.
14569         (mm-inlined-p): Doc fix.
14570
14571         * gnus-art.el (gnus-mime-display-single): Call `mm-inlinable-p' as
14572         well as `mm-inlined-p'.
14573
14574 2001-07-09 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14575
14576         * nntp.el (nntp-send-command, nntp-send-command-nodelete):
14577         (nntp-send-command-and-decode): Use gnus-point-at-bol.
14578
14579 2001-07-09 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14580         From  Paul Jarc <prj@po.cwru.edu>
14581
14582         * message.el (message-use-mail-followup-to): New variable.
14583         (message-get-reply-headers): Use it.
14584
14585 2001-07-04  Gerd Moellmann  <gerd@gnu.org>
14586
14587         * nnheader.el (nnheader-init-server-buffer): Make sure the
14588         *nntpd* buffer is made multibyte instead of a random buffer.
14589
14590 2001-07-09 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14591
14592         * gnus-sum.el (gnus-get-newsgroup-headers-xover): Get headers only
14593         when it returns headers.
14594
14595 2001-07-07  Simon Josefsson  <jas@extundo.com>
14596
14597         * rfc2047.el (rfc2047-encode-message-header): Skip header when
14598         trying to fold. Thanks to Colin Walters
14599         <walters@cis.ohio-state.edu>
14600
14601 2001-07-06  Simon Josefsson  <jas@extundo.com>
14602
14603         * imap.el (imap-parse-address-list, imap-parse-flag-list)
14604         (imap-parse-body-extension, imap-parse-body-ext, imap-parse-body):
14605         Add information in `assert's.
14606
14607         * nnimap.el (nnimap-possibly-change-group): Ignore uidvalidity
14608         changes. (From nnimaps' point of view, `nnimap-verify-uidvalidity'
14609         and `nnimap-group-overview-filename', should handle all
14610         change-of-uidvalidity related issues.  But there may be other
14611         problems.)
14612
14613 2001-07-05  Colin Walters  <walters@cis.ohio-state.edu>
14614
14615         * rfc2047.el (rfc2047-encode-message-header): Don't include the
14616         header name when folding.
14617
14618 2001-07-05  Colin Walters  <walters@cis.ohio-state.edu>
14619
14620         * mm-decode.el (mm-inlined-types): Document relationship with
14621         `mm-inline-media-tests'.
14622         (mm-display-inline): Default to displaying as plain text if no
14623         inlining handler is available.
14624         (mm-inlinable-p): Remove.
14625         (mm-inlined-p): Don't call `mm-inlinable-p'.
14626         (mm-automatic-display-p): Ditto.
14627         (mm-attachment-override-p): Ditto.
14628
14629 2001-07-04  Simon Josefsson  <jas@extundo.com>
14630
14631         * nnimap.el (nnimap-importantize-dormant): New variable.
14632         (nnimap-request-update-info-internal): Use it.
14633         (nnimap-request-set-mark): Ditto.
14634
14635 2001-07-04  Didier Verna  <didier@lrde.epita.fr>
14636
14637         * nntp.el (nntp-send-command): don't pass a buffer argument to
14638         `point'. Only XEmacs accepts this.
14639         * nntp.el (nntp-send-command-nodelete): ditto.
14640         * nntp.el (nntp-send-command-and-decode): ditto.
14641
14642 2001-07-04  Didier Verna  <didier@lrde.epita.fr>
14643
14644         * nntp.el (nntp-open-connection-function): doc update.
14645         * nntp.el (nntp-pre-command): New.
14646         * nntp.el (nntp-via-rlogin-command): New.
14647         * nntp.el (nntp-via-telnet-command): New.
14648         * nntp.el (nntp-via-telnet-switches): New.
14649         * nntp.el (nntp-via-user-name): New.
14650         * nntp.el (nntp-via-user-password): New.
14651         * nntp.el (nntp-via-address): New.
14652         * nntp.el (nntp-via-envuser): New.
14653         * nntp.el (nntp-via-shell-prompt): New.
14654         * nntp.el (nntp-open-telnet-stream): New.
14655         * nntp.el (nntp-open-via-rlogin-and-telnet): New.
14656         * nntp.el (nntp-open-via-telnet-and-telnet): New.
14657         * nntp.el (nntp-wait-for): check for possibly echo'ed commands.
14658         * nntp.el (nntp-send-command): ditto.
14659         * nntp.el (nntp-send-command-nodelete): ditto.
14660         * nntp.el (nntp-send-command-and-decode): ditto.
14661
14662 2001-06-30  YAGI Tatsuya  <yagi@is.titech.ac.jp>
14663         Trivial patch.
14664
14665         * gnus-start.el (gnus-check-first-time-used): Use `if' instead of
14666         `when'.
14667
14668 2001-07-03  Simon Josefsson  <jas@extundo.com>
14669         From Nuutti Kotivuori <nuutti.kotivuori@smarttrust.com>
14670
14671         * flow-fill.el (fill-flowed): Use (1+ (point-at-eol)) instead.
14672
14673 2001-07-03  Simon Josefsson  <jas@extundo.com>
14674
14675         * flow-fill.el (fill-flowed): If `fill-region' inserts empty line,
14676         remove it (workaround XEmacs `fill-region' bug).
14677
14678 2001-07-01  Simon Josefsson  <jas@extundo.com>
14679
14680         * nnimap.el (nnimap-date-days-ago): Defeat locale.
14681
14682 2001-06-28 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14683
14684         * mml2015.el (mml2015-format-error): New function.
14685         (mml2015-mailcrypt-decrypt, mml2015-mailcrypt-clear-decrypt)
14686         (mml2015-mailcrypt-verify, mml2015-gpg-clear-verify)
14687         (mml2015-mailcrypt-clear-verify, mml2015-gpg-verify): Use it.
14688
14689 2001-06-26 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14690
14691         * nnrss.el (nnrss-retrieve-headers): The description may not exist.
14692         Suggested by Christoph Conrad <C.Conrad@cli.de>.
14693
14694         * gnus-sum.el (gnus-summary-set-local-parameters): Don't override
14695         group variables.
14696
14697 2001-06-25 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14698
14699         * nnslashdot.el (nnslashdot-write-groups): Use gnus-prin1.
14700
14701         * nnrss.el (nnrss-save-server-data): Bind print-level and print-length.
14702         (nnrss-save-group-data): Ditto.
14703
14704         * gnus-agent.el (gnus-agent-save-alist): Ditto.
14705
14706 2001-06-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14707
14708         * message.el (message-do-send-housekeeping): Narrow to headers.
14709
14710 2001-06-24  Simon Josefsson  <jas@extundo.com>
14711
14712         * rfc2047.el (rfc2047-fold-region): The check to skip WSP
14713         insertion when breaking lines looked for " \t" instead of "[ \t]".
14714         (rfc2047-encode-message-header): Fold lines even if
14715         no QP encoding is done.
14716
14717 2001-06-23  Simon Josefsson  <jas@extundo.com>
14718         From Samuel Tardieu <sam@inf.enst.fr>
14719
14720         * smime.el (smime-keys): Support additional certificates.
14721         (smime-make-certfiles): New function.
14722         (smime-sign-region): Use previous variables.
14723         (smime-get-certfiles): New function.
14724         (smime-sign-buffer): Use it.
14725         (smime-verify-region): Support both CAfile and CApath.
14726
14727 2001-06-23  Simon Josefsson  <jas@extundo.com>
14728
14729         * smime.el (smime-decrypt-region): Perhaps work.
14730
14731 2001-06-22 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14732
14733         * gnus-msg.el (gnus-copy-article-buffer): Typo.
14734
14735 2001-04-06  Ralph Schleicher  <rs@nunatak.allgaeu.org>
14736
14737         * mm-decode.el (mm-save-part): Rewrite file name.
14738         (mm-file-name-rewrite-functions): New variable.
14739         (mm-file-name-delete-whitespace): New function.
14740         (mm-file-name-trim-whitespace): New function.
14741         (mm-file-name-collapse-whitespace): New function.
14742         (mm-file-name-replace-whitespace): New variable and function.
14743
14744 2001-06-22  Simon Josefsson  <jas@extundo.com>
14745
14746         * message.el (message-make-date): Workaround locale for weekdays.
14747
14748 2001-06-21 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14749
14750         * message.el (message-goto-body): Return nil if not found. (revert!)
14751
14752 2001-06-21 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14753         From Fremlin <chief@bandits.org>
14754
14755         * message.el (message-goto-body): Some messages have no header.
14756
14757         * gnus-msg.el (gnus-copy-article-buffer): Use it.
14758
14759 2001-06-21  Ralph Schleicher  <rs@nunatak.allgaeu.org>
14760
14761         * nnultimate.el (nnultimate-retrieve-headers): Date fix.
14762
14763 2001-06-21 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14764
14765         * message.el (message-make-date): Add week day.
14766         Suggested by Jason R. Mastaler <jason@mastaler.com>.
14767
14768 2001-06-19  Simon Josefsson  <jas@extundo.com>
14769
14770         * message.el (message-yank-prefix): Doc fix.
14771         (message-yank-cited-prefix): Ditto.
14772         (message-delete-not-region): Keep citation prefix on first line,
14773         if possible and appropriate.
14774
14775 2001-06-19  Simon Josefsson  <jas@extundo.com>
14776
14777         * imap.el (imap-process-connection-type): New variable.
14778         (imap-kerberos4-open, imap-gssapi-open): Use it.  This makes
14779         recent `imtest's work completely (no line length issues), while
14780         making making old `imtest's unusable.  Thanks to NAGY Andras
14781         <nagya@inf.elte.hu> for his work.
14782
14783 2000-12-30  NAGY Andras  <nagya@inf.elte.hu>
14784
14785         * imap.el (imap-ssl-program): Add -quiet to shut up
14786         OpenSSL/SSLeay's internal debug talk.
14787
14788 2001-06-19  Matt Armstrong  <matt@lickey.com>
14789
14790         * imap.el (imap-parse-flag-list): Workaround bug in Courier IMAP
14791         server.
14792
14793 2001-06-19 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14794
14795         * nnmail.el (nnmail-article-buffer): New variable.
14796         (nnmail-split-incoming): Use it.
14797
14798 2001-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
14799
14800         * qp.el (quoted-printable-decode-region): If called interactively,
14801         use coding-system-for-read.
14802
14803 2001-06-16 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14804
14805         * message.el (message-check-news-header-syntax): Check Reply-To.
14806
14807 2001-06-16 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14808
14809         * mml.el (mml-parse-1): Use message options.
14810
14811         * message.el (message-do-fcc): Don't do anything if there is no
14812         FCC.
14813
14814 2001-06-16  Simon Josefsson  <jas@extundo.com>
14815
14816         * nnimap.el (nnimap-split-articles): Support 'junk to-groups.
14817         (nnimap-expunge-search-string): New variable.
14818         (nnimap-request-expire-articles): Use it.
14819
14820 2001-06-15 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14821
14822         * message.el (message-send-mail-with-qmail): wrong exit status is
14823         100 not 1. Reported by Paul Jarc <prj@po.cwru.edu>.
14824
14825 2001-06-15 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14826
14827         * gnus-art.el (article-strip-multiple-blank-lines): Use
14828         delete-region instead of replace-match.
14829
14830 2001-06-14 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14831
14832         * nnweb.el (nnweb-google-parse-1): Fix Google content regexp.
14833         (nnweb-google-wash-article): Ditto.
14834
14835 2001-06-14 Ferenc Wagner  <wferi@bolyai1.elte.hu>
14836
14837         * nnweb.el (nnweb-google-parse-1): Fix Google url regexp.
14838
14839 2001-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14840
14841         * gnus.el (gnus-define-group-parameter): Don't quote the defcustom
14842         specs.
14843
14844 2001-06-13 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14845
14846         * gnus.el (gnus-email-address): Move it here.
14847
14848         * gnus-art.el (article-de-quoted-unreadable): Read charset if
14849         requested.
14850         (article-de-base64-unreadable): Ditto.
14851         (article-wash-html): Ditto.
14852
14853 2001-06-12 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14854
14855         * message.el (message-options-set-recipient): Don't add ", "
14856         unless necessary. Suggested by Josh Huber <huber@alum.wpi.edu>.
14857
14858 2001-06-12 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14859
14860         * nnrss.el (nnrss-group-alist): Use |fr| instead of [fr].
14861
14862 2001-06-12 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14863
14864         * gnus-art.el (gnus-plain-save-name): Use file-relative-name.
14865         From Marc Lefranc <Marc.Lefranc@univ-lille1.fr>.
14866
14867         * nnrss.el (nnrss-node-text): Node might be nil.
14868
14869 2001-06-11 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14870
14871         * gnus-uu.el (gnus-uu-save-article): Use mml tag instead of
14872         part. From Katsumi Yamaoka <yamaoka@jpl.org>.
14873
14874         * nnrss.el (nnrss-group-alist): More items.
14875
14876 2001-06-09 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14877
14878         * nnrss.el (nnrss-node-text): Use cddr instead xml-node-children.
14879
14880 2001-06-03  ShengHuo ZHU  <zsh@cs.rochester.edu>
14881         Trivial patch from Dale Hagglund  <rdh@best.com>
14882
14883         * gnus-mlspl.el (gnus-group-split-fancy): Fix generation of split
14884         restrict clauses.
14885
14886 2001-06-07 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14887
14888         From Benjamin Rutt <brutt+news@bloomington.in.us>
14889
14890         * message.el (message-wide-reply-confirm-recipients): New variable.
14891
14892 2001-06-06  ShengHuo ZHU  <zsh@cs.rochester.edu>
14893         Trivial patch from Mark Thomas  <mthomas@edrc.cmu.edu>
14894
14895         * nnmail.el (nnmail-fix-eudora-headers): Change the In-Reply-To
14896         fix so it works with XEmacs.
14897
14898 2001-06-07 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14899
14900         * nnrss.el (nnrss-retrieve-headers): Support description as extra
14901         headers.
14902
14903 2001-06-07 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14904
14905         * nnrss.el: Fix a few bugs.
14906
14907 2001-06-05  Simon Josefsson  <jas@extundo.com>
14908
14909         * mm-decode.el (mm-handle-set-external-undisplayer): Don't
14910         generate compiler warnings.  From Alex Schroeder <alex@gnu.org>.
14911
14912 2001-06-04  Hrvoje Niksic  <hniksic@arsdigita.com>
14913
14914         * mm-decode.el (mm-pipe-part): Bind coding-system-for-write to
14915         binary so that we don't transmit ISO 2022 garbage to the process.
14916         This is needed under XEmacs.
14917
14918 2001-06-03  Simon Josefsson  <simon@josefsson.org>
14919
14920         * imap.el (imap-ssl-open): Require ssl. (Otherwise ssl.el is
14921         autoloaded incorrectly below because ssl-program-* is bound.)
14922         Thanks to Amos Gouaux for report.
14923
14924 2001-06-02  Simon Josefsson  <simon@josefsson.org>
14925
14926         * imap.el (imap-kerberos4-open):
14927         (imap-gssapi-open):
14928         (imap-ssl-open):
14929         (imap-network-open):
14930         (imap-shell-open):
14931         (imap-starttls-open): Set buffer to workaround spurious
14932         `accept-process-output' buffer changes.  Thanks to Mats Lidell
14933         <Mats.Lidell@contactor.se> for report and partial patch and Jake
14934         Colman <colman@ppllc.com> for report.
14935
14936 2001-05-31 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14937
14938         * gnus-sum.el (gnus-summary-catchup): New argument.
14939         (gnus-summary-catchup-from-here): New function.
14940
14941 2001-05-30  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14942
14943         * mm-view.el (mm-inline-image-xemacs): Insert newline, then move
14944         back, then insert glyph.  (Before, the glyph was inserted first,
14945         then the newline.)  This works around a behavior in XEmacs where
14946         it is not possible to insert a character after a glyph which is at
14947         the end of a buffer.  Patch by Lloyd Zusman <ljz@asfast.com>.
14948
14949 2001-05-28  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14950
14951         From Jaap-Henk Hoepman (jhh@xs4all.nl).
14952
14953         * mm-decode.el (mm-keep-viewer-alive-types): New variable.
14954         (mm-keep-viewer-alive-p, mm-handle-set-external-undisplayer,
14955         mm-destroy-postponed-undisplay-list): New functions.
14956         (mm-display-external): Use them.
14957
14958 2001-05-27  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14959
14960         * gnus-salt.el (gnus-tree-highlight-node): Bind `default-high' and
14961         `default-low' when evaluating `gnus-summary-highlight'.
14962         From Raja R Harinath <harinath@cs.umn.edu>.
14963
14964 2001-05-27  Simon Josefsson  <simon@josefsson.org>
14965
14966         * message.el (message-yank-cited-prefix): New variable.
14967         (message-indent-citation): Use it.
14968
14969         * mml2015.el (mml2015-mailcrypt-verify): Store gpg stderr output
14970         as details.
14971         (mml2015-mailcrypt-clear-verify): Ditto.
14972
14973 2001-05-24  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
14974         From Nevin Kapur <nevin@jhu.edu>.
14975
14976         * gnus-sum.el (gnus-summary-default-high-score,
14977         gnus-summary-default-low-score): New variables.
14978         (gnus-summary-highlight): Use them.
14979
14980 2001-05-16  Didier Verna  <didier@lrde.epita.fr>
14981
14982         * message.el (message-mail): pass the 'send-actions argument to
14983         `message-setup'.
14984
14985 2001-05-16  Simon Josefsson  <simon@josefsson.org>
14986         From Raymond Scholz <ray-2001@zonix.de>
14987
14988         * gnus-art.el (gnus-mime-view-part-as-charset):
14989         (gnus-mime-internalize-part): Doc fixes.
14990
14991 2001-05-11  Simon Josefsson  <simon@josefsson.org>
14992
14993         * gnus-start.el (gnus-ignored-newsgroups): Also ignore NNTP type
14994         status lines without any text ("^215$").
14995
14996 2001-05-06 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
14997
14998         * nnrss.el (nnrss-check-group): Reverse.
14999
15000 2001-05-07  Simon Josefsson  <simon@josefsson.org>
15001
15002         * message.el (message-get-reply-headers):
15003         (message-followup): Fix typo, suggested by David Green
15004         <dgreen@uab.edu>
15005
15006 2001-05-05 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15007
15008         * nnslashdot.el (nnslashdot-request-expire-articles): Fix.
15009
15010         * nnrss.el (nnrss-open-server): Read server data when it is called.
15011         (nnrss-request-expire-articles): Fix.
15012
15013 2001-05-05 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15014
15015         * message.el (message-do-send-housekeeping): mail-abbrevs may
15016         rename buffer behind Gnus.
15017
15018 2001-05-04 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15019
15020         * nnrss.el (nnrss-check-group): Use nnheader-translate-file-chars.
15021         (nnrss-group-alist): Add more resources.
15022         (nnrss-check-group): Ignore errors.
15023
15024 2001-05-04 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15025
15026         * nnrss.el (nnrss-request-expire-articles): Correct the return value.
15027
15028         * nnslashdot.el (nnslashdot-request-list): Add time.
15029         (nnslashdot-request-expire-articles): New function.
15030
15031         * gnus-start.el (gnus-check-bogus-newsgroups): Remove bogus
15032         secondary methods too.
15033
15034 2001-05-03 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15035
15036         * message.el (message-use-followup-to): Set default value to t.
15037
15038 2001-05-03  Florian Weimer  <fw@deneb.enyo.de>
15039
15040         * message.el (message-dont-reply-to-names): Fix documentation.
15041         (message-get-reply-headers): Use Mail-Followup-To only for wide
15042         replies.
15043
15044 2001-05-03 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15045
15046         * nnrss.el (nnrss-request-expire-articles): Calculate # of days
15047         correctly.
15048         (nnrss-check-group): Use time.
15049
15050 2001-05-01 19:21:19 Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15051
15052         * gnus.el: Oort Gnus v0.03 is released.
15053
15054 2001-05-01 19:06:21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15055
15056         * nnultimate.el (nnultimate-topic-article-to-article): Use the
15057         group.
15058
15059 2001-04-24 19:50:14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15060
15061         * gnus-srvr.el (gnus-server-insert-server-line): Add a space.
15062
15063 2001-04-15 14:55:03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15064
15065         * nnultimate.el (nnultimate-retrieve-headers): Return all
15066         available headers.
15067
15068         * gnus-sum.el (gnus-read-all-available-headers): New variable.
15069         (gnus-get-newsgroup-headers-xover): Use it.
15070
15071 2001-04-14 15:47:26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15072
15073         * nnultimate.el (nnultimate-retrieve-headers): Clean up.
15074
15075 2001-04-30 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15076
15077         * nntp.el (nntp-retrieve-groups): Use throw instead of error.
15078
15079 2001-04-29 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15080
15081         * nnrss.el (nnrss-insert-w3): Use cache before I figure out how to
15082         disable it.
15083
15084         * gnus.el (gnus-info-nodes): Remove a few The's.
15085
15086 2001-04-29 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15087
15088         * mail-source.el (mail-source-movemail): Call-process may return a
15089         signal description string.
15090
15091         * gnus-start.el (gnus-read-newsrc-el-file):
15092         gnus-newsrc-file-version may be nil.
15093
15094         * nnmail.el (nnmail-get-new-mail): Use the exact file only.
15095         Suggested by Michael Sperber [Mr. Preprocessor]
15096         <sperber@informatik.uni-tuebingen.de>.
15097
15098 2001-04-25  Per Abrahamsen  <abraham@dina.kvl.dk>
15099
15100         * mm-uu.el (mm-uu-configure-list): Fixed customize type.
15101
15102 2001-04-24  Hrvoje Niksic  <hniksic@arsdigita.com>
15103
15104         * mm-view.el (mm-display-inline-fontify): Allow XEmacs to fully
15105         fontify HANDLE.
15106
15107 2001-04-18  Simon Josefsson  <simon@josefsson.org>
15108
15109         * smime.el (smime-ask-passphrase): Rework to return value.
15110         (smime-sign-region): Rework to bind value and use it.
15111         (smime-decrypt-region): Ditto.
15112
15113 2001-04-18  Simon Josefsson  <simon@josefsson.org>
15114         Trivial patch from Mathias Herberts  <Mathias.Herberts@iroise.net>
15115
15116         * smime.el (smime-ask-passphrase): New function.
15117         (smime-sign-region): Use it.
15118         (smime-encrypt-cipher): New variable.
15119         (smime-decrypt-region): Ditto.
15120
15121 2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
15122         Committed by Simon Josefsson  <simon@josefsson.org>
15123
15124         * imap.el (imap-shell-open): Erase the buffer *after* copying it into
15125         the log.
15126
15127 2001-04-14 01:14:42 Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15128
15129         * gnus.el: Oort Gnus v0.02 is released.
15130
15131 2001-04-14 00:48:42  Lars Magne Ingebrigtsen  <larsi@quimby.gnus.org>
15132
15133         * gnus.el: Oort Gnus v0.01 is released.
15134
15135 2001-04-13 22:01:46  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15136
15137         * gnus-sum.el (gnus-summary-highlight): Highlight read
15138         undownloaded articles as read articles.
15139
15140         * gnus-agent.el (gnus-agent-get-undownloaded-list): Clean up.
15141         (gnus-agent-get-undownloaded-list): Mark all undownloaded
15142         articles, even read ones, as such.
15143
15144         * gnus-sum.el (gnus-summary-find-matching): Clean up.
15145         (gnus-find-matching-articles): New function.
15146         (gnus-summary-limit-include-matching-articles): New command.
15147         (gnus-summary-limit-include-thread): Include articles that have
15148         matching subjects.
15149         (gnus-offer-save-summaries): Clean up.
15150
15151 2001-04-13  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15152
15153         * nnmail.el (nnmail-split-fancy-with-parent): Add docstring.
15154
15155 2001-04-12 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15156         From Jason Merrill <jason_merrill@redhat.com>
15157
15158         * gnus-sum.el (gnus-summary-insert-new-articles): Reverse the articles.
15159
15160 2001-04-10 08:01:15  Katsumi Yamaoka  <yamaoka@jpl.org>
15161         Committed by ShengHuo ZHU  <zsh@cs.rochester.edu>
15162
15163         * gnus-msg.el (gnus-post-news): Fill the Newsgroups header by the
15164         newsgroup names when the original article is a news message.
15165
15166 2001-04-12 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15167
15168         * message.el (message-cite-prefix-regexp): Use POSIX regexp if
15169         supported. Suggest by Jim Meyering <jim@meyering.net>.
15170
15171 2001-04-02  Nevin Kapur  <nevin@jhu.edu>
15172         Committed by Kai Gro\e,b_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>.
15173
15174         * nnmail.el (nnmail-split-it): Added check for .* at the end of
15175         regexp in nnmail-split-fancy.
15176
15177 2001-04-10  Simon Josefsson  <simon@josefsson.org>
15178
15179         * message.el (message-options-set-recipient): Look at Cc and Bcc too.
15180
15181 2001-04-10  Colin Marquardt  <colin@marquardt-home.de>
15182
15183         * message.el (message-send-mail): Improve the interaction with the
15184         user.
15185
15186 2001-04-10  Simon Josefsson  <simon@josefsson.org>
15187
15188         * imap.el (imap-message-copy): Work around buggy servers that
15189         doesn't send TRYCREATE tags.
15190
15191 2001-04-09 01:15:54  Katsumi Yamaoka  <yamaoka@jpl.org>
15192
15193         * gnus-start.el (gnus-read-newsrc-el-file): Work with Semi-gnusae.
15194
15195 2001-04-05 21:43:25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15196
15197         * gnus-sum.el (gnus-update-summary-mark-positions): Use a valid
15198         date.
15199
15200 2001-04-04 16:13:17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15201
15202         * gnus-group.el (gnus-group-quit): Check that the dribble buffer
15203         lives.
15204
15205 2001-04-02 00:40:12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15206
15207         * gnus-art.el (gnus-parse-news-url): New function.
15208         (gnus-button-handle-news): New function.
15209         (gnus-button-alist): Point to new functions.
15210
15211         * gnus-group.el (gnus-group-quit): Only mark buffer in non-empty.
15212
15213         * gnus-start.el (gnus-read-newsrc-el-file): Nix out
15214         gnus-format-specs.
15215
15216         * message.el (message-check-news-header-syntax): Question even
15217         when Gnus doesn't know the group names.
15218         (message-send-news): Clean up.
15219
15220         * gnus-start.el (gnus-dribble-read-file): Say whether Gnus was
15221         exited on purpose without saving.
15222
15223         * gnus-group.el (gnus-group-quit): Mark the dribble file as `Q'.
15224
15225 2001-04-01 00:37:14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15226
15227         * gnus-score.el (gnus-score-orphans): Clean up.
15228
15229         * gnus-win.el (gnus-remove-some-windows): Leave one Gnus window.
15230
15231         * gnus-sum.el (gnus-summary-exit): Kill the summary buffer a bit
15232         later.
15233
15234         * gnus-start.el (gnus-close-all-servers): Find the right items to
15235         close.
15236
15237         * qp.el (quoted-printable-decode-region): Just message
15238         malformation; don't quit.
15239
15240 2001-03-31 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15241         From Gerd Moellmann <gerd@gnu.org>.
15242
15243         * gnus.el (gnus-interactive): A typo.
15244
15245 2001-03-26  Juanma Barranquero  <lektu@uol.com.br>
15246         Committed by ShengHuo ZHU  <zsh@cs.rochester.edu>
15247
15248         * gnus-util.el (gnus-delete-alist): Declare it as an alias of
15249         `assq-delete-all', if that function exists; otherwise use the old
15250         definition. Documentation changed to match the one in
15251         `assq-delete-all'.
15252
15253 2001-04-01 00:37:14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15254
15255         * gnus-start.el (gnus-close-all-servers): New function.
15256
15257         * gnus-srvr.el (gnus-server-close-all-servers): Clean up.
15258         (gnus-server-remove-denials): Clean up.
15259
15260         * gnus-sum.el (gnus-summary-sort-by-original): New command and
15261         keystroke.
15262
15263 2001-03-31 02:56:55  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15264
15265         * message.el (message-send-news): Message where we are sending.
15266         (message-send-mail): Ditto.
15267
15268         * gnus.el (gnus-server-string): New function.
15269
15270         * gnus-sum.el (gnus-summary-up-thread): Doc fix.
15271
15272         * mm-decode.el (mm-default-directory): Customized.
15273         (mm-tmp-directory): Ditto.
15274
15275         * gnus-sum.el (gnus-summary-catchup-and-exit): Doc fix.
15276         (gnus-get-newsgroup-headers): Return -1 for articles without Lines
15277         or Chars.
15278         (gnus-summary-line-format-alist): ?l is now a string.
15279         (gnus-summary-prepare-threads): Output ? for unknown lines.
15280         (gnus-summary-insert-line): Ditto.
15281         (gnus-summary-print-article): Unbalanced parentheses.
15282
15283         * gnus-msg.el (gnus-inews-do-gcc): Check group to allow it to find
15284         out whether new stuff has arrived.
15285
15286 2001-03-31 02:14:38  Alan Shutko  <ats@acm.org>
15287
15288         * gnus-sum.el: Let printing work on ttys on Emacs.
15289
15290 2001-03-31 01:11:14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15291
15292         * gnus-msg.el (gnus-post-news): Add an empty Newsgroups header
15293         when forcing news.
15294
15295         * gnus-sum.el (gnus-summary-mark-article-as-replied): Make into a
15296         command.
15297
15298 2001-03-31 01:04:54  Francis Litterio  <franl@world.std.com>
15299
15300         * message.el (message-set-auto-save-file-name): Don't use
15301         asterisks under nt.
15302
15303 2001-03-31 00:03:42  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15304
15305         * gnus-msg.el (gnus-inews-insert-draft-meta-information): Allow
15306         lists of articles.
15307
15308         * gnus-uu.el (gnus-uu-digest-mail-forward): Mark as forwarded.
15309
15310         * gnus-msg.el (gnus-put-message): Clean up.
15311         (gnus-summary-reply): Mark all replied-to articles as replied to.
15312         (gnus-inews-add-send-actions): Also mark as forwarded.
15313         (gnus-summary-mail-forward): Mark as forwarded.
15314
15315         * gnus-sum.el (gnus-summary-mark-article-as-replied): Take a list
15316         of articles.
15317         (gnus-summary-mark-article-as-forwarded): Ditto.
15318
15319         * gnus-msg.el (gnus-summary-resend-message): Mark article as
15320         forwarded.
15321         (gnus-summary-mail-forward): Clean up.
15322
15323         * gnus.el (gnus-article-mark-lists): Added forward.
15324
15325         * gnus-sum.el (gnus-forwarded-mark): New variable.
15326         (gnus-summary-prepare-threads): Use it.
15327         (gnus-summary-update-secondary-mark): Ditto.
15328         (gnus-newsgroup-forwarded): New variable.
15329
15330 2001-03-30 23:13:37  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15331
15332         * gnus-msg.el (gnus-summary-reply): Allow very wide replies.
15333         (gnus-summary-very-wide-reply): New command and keystroke.
15334         (gnus-summary-very-wide-reply-with-original): Ditto.
15335
15336         * gnus-score.el (gnus-adaptive-word-length-limit): New variable.
15337         (gnus-score-adaptive): Use it.
15338
15339         * gnus-start.el (gnus-get-unread-articles): Clean up.
15340
15341 2001-03-21 20:00:43  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15342
15343         * nnultimate.el (nnultimate-retrieve-headers): Work for other
15344         boards.
15345
15346 2001-03-21  Didier Verna  <didier@lrde.epita.fr>
15347
15348         * gnus-start.el (gnus-subscribe-newsgroup-hooks): New.
15349         * gnus-start.el (gnus-subscribe-newsgroup): use it.
15350
15351 2001-03-15 09:47:23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15352
15353         * nnultimate.el (nnultimate-retrieve-headers): Understand
15354         long-form month names.
15355
15356 2001-03-18 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15357
15358         * gnus-sum.el (gnus-summary-show-all-headers):
15359         gnus-article-show-all-headers is broken. Use
15360         gnus-summary-toggle-header instead.
15361
15362         * mml2015.el (mml2015-gpg-extract-from): No error.
15363
15364 2001-03-18 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15365         From Bj\e,Ax\e(Brn Mork <bmork@dod.no>.
15366
15367         * mml2015.el (mml2015-gpg-extract-from): New function.
15368         (mml2015-gpg-verify): Use it.
15369         (mml2015-gpg-clear-verify): Use it.
15370
15371 2001-03-17 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15372
15373         * message.el (message-setup-fill-variables): Use
15374         fill-paragraph-function.
15375         (message-fill-paragraph): Take an argument.
15376         (message-newline-and-reformat): Take another argument.
15377
15378 2001-03-16 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15379
15380         * message.el (rmail-output): It is in rmailout.el not rmail.el.
15381
15382 2001-03-16 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15383
15384         * message.el (message-forward): local-variable-p takes an extra
15385         argument in XEmacs.
15386
15387 2001-03-16  Simon Josefsson  <simon@josefsson.org>
15388
15389         * nnimap.el (nnimap-dont-use-nov-p): Renamed from
15390         `nnimap-use-nov-p' (it really tested the negative).
15391         (nnimap-retrieve-headers): Use it.
15392
15393 2001-03-11  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15394
15395         * message.el (message-generate-headers-first): Update doc.
15396
15397 2001-03-10  Matthias Wiehl  <mwiehl@gmx.de>
15398         Trivial patch.
15399
15400         * gnus.el (gnus-summary-line-format): Typo.
15401
15402 2001-03-11  Simon Josefsson  <simon@josefsson.org>
15403
15404         * mailcap.el (mailcap-mime-data): Add application/sieve.
15405         (mailcap-mime-extensions): Add .siv, .xls.
15406
15407 2001-03-14 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15408         From Christoph Conrad <christoph.conrad@gmx.de>
15409
15410         * gnus-score.el (gnus-summary-lower-thread): Typo.
15411
15412 2001-03-14 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15413
15414         * message.el (message-forward-decoded-p): New variable.
15415         (message-forward-subject-author-subject): Use it.
15416         (message-make-forward-subject): Use it.
15417         (message-forward): Use it.
15418
15419         * gnus-uu.el (gnus-uu-digest-mail-forward): Use it.
15420
15421         * mm-util.el, message.el, rfc2047.el, gnus-sum.el, gnus-score.el:
15422         Sync with Emacs 21 (tag EMACS_PRETEST_21_0_100).
15423
15424 ;;Has been fixed -- zsh.
15425 ;;2001-03-05  Dave Love  <fx@gnu.org>
15426 ;;
15427 ;;      * mm-util.el (mm-mime-mule-charset-alist): Fix utf-8 case.
15428 ;;      Move it after definition of mm-coding-system-p.
15429 ;;
15430 2001-03-01  Dave Love  <fx@gnu.org>
15431
15432         * mm-util.el (mm-inhibit-file-name-handlers): Add
15433         image-file-handler.
15434
15435 2001-02-11  Dave Love  <fx@gnu.org>
15436
15437         * message.el (message-signature-file): Fix doc, :type.
15438
15439 2001-02-08  Dave Love  <fx@gnu.org>
15440
15441         * rfc2047.el (rfc2047-fold-region): Don't forward-char at EOB.
15442         (message-posting-charset): Defvar when compiling again.
15443         (rfc2047-encodable-p): Require message.
15444
15445         * gnus-sum.el (gnus-alter-articles-to-read-function):
15446         * gnus-score.el (gnus-score-after-write-file-function): Fix :type.
15447
15448 2001-03-08 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15449
15450         * nnrss.el: New file.
15451
15452 2001-03-08 02:41:36  Katsumi Yamaoka  <yamaoka@jpl.org>
15453         Committed by ShengHuo ZHU  <zsh@cs.rochester.edu>
15454
15455         * rfc2047.el (rfc2047-unfold-region): Fix arg of
15456         `skip-chars-forward'.
15457
15458 2001-03-07 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15459
15460         * nndraft.el (nndraft-request-group): Restore auto save files if
15461         the original files do not exist.
15462
15463 2001-03-07 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15464
15465         * gnus-score.el (gnus-score-find-bnews): Print messages on illegal
15466         SCORE paths.
15467
15468         * mm-decode.el (mm-dissect-buffer): Call
15469         mail-extract-address-components only if necessary.
15470
15471 2001-03-06 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15472
15473         * gnus-score.el (gnus-score-find-bnews): Maybe there is no
15474         directory part.
15475         (gnus-score-search-global-directories): Use file-directory-p.
15476
15477         * gnus-score.el (gnus-score-score-files-1): Use
15478         gnus-kill-files-directory.
15479         From Adrian Aichner <adrian@xemacs.org>.
15480
15481 2001-03-05 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15482
15483         * gnus.el (charset): Move here from gnus-sum.el.
15484
15485 2001-03-04 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15486
15487         * mml.el (mml-preview): Disable local map.
15488
15489         * gnus-sum.el (gnus-summary-make-menu-bar): Make
15490         gnus-article-post-menu here.
15491
15492         * gnus-art.el (gnus-article-make-menu-bar): Make summary-menu bar
15493         if it has not been made.
15494
15495 2001-03-02 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15496
15497         * gnus-art.el (gnus-article-describe-key): Map key to event.
15498         (gnus-article-describe-key-briefly): Ditto
15499
15500 2001-03-01 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15501
15502         * gnus-sum.el (gnus-summary-limit-include-expunged): Fix.
15503
15504 2001-03-01 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15505         From Katsumi Yamaoka <yamaoka@jpl.org>.
15506
15507         * dgnushack.el (coerce, merge, subseq): defmacro.
15508
15509 2001-03-01 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15510
15511         * lpath.el (nndraft-request-group): Move it here from nndraft.el.
15512         A fake defalias in nndraft.el results a not-activated bug in
15513         uncompiled versions.
15514
15515 2001-02-26 11:27:27  Paul Jarc  <prj@po.cwru.edu>
15516         Committed by ShengHuo ZHU  <zsh@cs.rochester.edu>
15517
15518         * gnus-util.el (gnus-split-references): Handle malformed References:.
15519
15520 2001-02-26 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15521
15522         * gnus-art.el (gnus-article-mime-part-status): 1 part.
15523
15524 2001-02-25 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15525         From NAGY Andras <nagya@inf.elte.hu>.
15526
15527         * gnus.el (gnus-parameters): Typo.
15528
15529 2001-02-24 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15530
15531         * gnus.el (gnus-read-method): Remove redundancy.
15532
15533 2001-02-23 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15534
15535         * nnslashdot.el (nnslashdot-backslash-url): New variable.
15536         (nnslashdot-request-list): Use it.
15537
15538 2001-02-23 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15539
15540         * nnml.el (nnml-generate-active-info): Fix the case when there is
15541         no file.
15542
15543         * gnus-sum.el (gnus-summary-import-article): Display it. Enable edit.
15544         (gnus-summary-create-article): New function.
15545
15546         * gnus-group.el (gnus-group-mark-article-read): New function.
15547
15548         * gnus-msg.el (gnus-inews-do-gcc): Use it.
15549
15550         * gnus-art.el (gnus-article-edit-article): Set modified-p nil.
15551
15552 2001-02-23 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15553
15554         * gnus-art.el (gnus-article-edit-done): Don't use
15555         gnus-article-edit-exit.
15556         (gnus-article-edit-exit): Confirm and insert original-article-buffer.
15557
15558         * gnus.el (gnus-parameters): New variable.
15559         Suggested by NAGY Andras <nagya@inf.elte.hu>.
15560         (gnus-parameters-get-parameter): New function.
15561         (gnus-group-find-parameter): Use it.
15562
15563 2001-02-23  Simon Josefsson  <simon@josefsson.org>
15564
15565         * gnus-msg.el (gnus-post-method): Fix documentation to reflect
15566         change of default value to `current'.
15567
15568 2001-02-23 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15569
15570         * nneething.el (nneething-get-head): Insert unreadable file too.
15571
15572 2001-02-22 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15573
15574         * gnus-sum.el (gnus-summary-insert-articles): Remove fetched headers.
15575
15576         * webmail.el (webmail-type-definition): Deja is bought by google.
15577
15578 2001-02-22 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15579
15580         * gnus-sum.el (gnus-fetch-headers): New function.
15581         (gnus-select-newsgroup): Use it.
15582         (gnus-summary-insert-articles): New function.
15583         (gnus-summary-insert-old-articles): New function.
15584         (gnus-summary-insert-new-articles): New function.
15585
15586         * gnus-group.el (gnus-group-prepare-flat-list-dead): Use decoded-name.
15587         (gnus-group-list-active): Ditto.
15588         * gnus-sum.el (gnus-set-mode-line): Ditto.
15589         (gnus-summary-read-group-1): Ditto.
15590
15591 2001-02-21 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15592
15593         * gnus-topic.el (gnus-topic-get-new-news-this-topic): Redraw the
15594         current topic.
15595
15596 2001-02-21 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15597
15598         * smiley.el (gnus-smiley-display): Don't do widening.
15599
15600         * smiley-ems.el (gnus-smiley-display): Don't do widening. Smiley
15601         within body.
15602
15603         * gnus-msg.el (gnus-inews-do-gcc): Activate group anyway.
15604
15605         * gnus-art.el (gnus-mime-display-multipart-alternative-as-mixed):
15606         New variable.
15607         (gnus-mime-display-multipart-related-as-mixed): New variable.
15608         (gnus-mime-display-part): Use them.
15609
15610 2001-02-20 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15611
15612         * gnus-start.el (gnus-setup-news): Allow gnus-group-line-format to be
15613         something special.
15614
15615 2001-02-20 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15616
15617         * nnweb.el (nnweb-request-group): Set nnweb-group anyway.
15618         (nnweb-request-article): Call reference if exists.
15619         (nnweb-type-definition): Dejanews is bought by google.com.
15620         Beta!
15621
15622 2001-02-19 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15623
15624         * gnus-draft.el (gnus-draft-reminder): "Confirm to exit?"
15625
15626 2001-02-19  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15627
15628         * gnus-sum.el (gnus-thread-sort-functions): Doc fix.  Refer to
15629         gnus-article-sort-functions.
15630         (gnus-article-sort-functions): Doc fix.  Refer to
15631         gnus-thread-sort-functions.
15632
15633 2001-02-18 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15634         From Paul Jarc <prj@po.cwru.edu>.
15635
15636         * message.el (message-get-reply-headers): More fixes.
15637
15638 2001-02-17  Paul Jarc  <prj@po.cwru.edu>
15639         Committed by ShengHuo ZHU  <zsh@cs.rochester.edu>
15640
15641         * message.el (message-get-reply-headers): Fix bug with
15642         Mail-Followup-To/to-address interaction.
15643
15644 2001-02-17 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15645
15646         * gnus-msg.el (gnus-configure-posting-styles): Match header in
15647         gnus-article-copy.
15648
15649 2001-02-16 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15650
15651         * message.el (message-do-send-housekeeping): Rename to a better
15652         name.
15653
15654 2001-02-16 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15655
15656         * message.el (message-cancel-news): Check article first, then ask
15657         yes or no.
15658
15659 2001-02-16 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15660
15661         * mm-uu.el (mm-uu-type-alist): Add emacs-sources.
15662
15663 2001-02-16 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15664
15665         * gnus-range.el (gnus-range-normalize): New function.
15666
15667 2001-02-15  NAGY Andras  <nagya@inf.elte.hu>
15668
15669         * imap.el (imap-gssapi-open): Set imap-c-l-s-first.
15670
15671 2001-02-14 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15672
15673         * gnus-srvr.el (gnus-server-regenerate-server): Use gnus-get-function.
15674
15675         * nnagent.el (nnagent-request-regenerate): New function.
15676
15677         * nnfolder.el (nnfolder-request-regenerate): New deffoo.
15678
15679         * nnml.el (nnml-generate-nov-databases): Accept argument
15680         server. Don't open server if it is opened.
15681         (nnml-request-regenerate): Use it. Change to deffoo.
15682
15683 2001-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15684         Committed by ShengHuo ZHU  <zsh@cs.rochester.edu>
15685
15686         * gnus.el (gnus-define-group-parameter): Fix.
15687
15688 2001-02-14 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15689
15690         * gnus.el (gnus-define-group-parameter): Improved.
15691
15692         * gnus-sum.el (charset): Define parameter.
15693         (ignored-charsets): Ditto.
15694         (gnus-summary-setup-default-charset): Use them.
15695
15696         * gnus-start.el (gnus-read-descriptions-file): Use them.
15697
15698         * gnus-cus.el (gnus-group-parameters): Remove them.
15699
15700 2001-02-14 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15701
15702         * gnus-sum.el (gnus-summary-print-article): Redo highlight.
15703
15704 2001-02-13 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15705
15706         * gnus-sum.el (gnus-summary-read-group-1): Remove
15707         gnus-summary-set-local-parameters.
15708         (gnus-summary-setup-buffer): Put it here.
15709
15710 2001-02-13 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15711
15712         * gnus.el (to-address): Define parameter.
15713         (to-list): Ditto.
15714         * gnus-art.el (article-hide-boring-headers): Use them.
15715         * gnus-msg.el (gnus-post-news): Ditto.
15716         * gnus-cus.el (gnus-group-parameters): Remove them.
15717
15718 2001-02-13 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15719
15720         * gnus-draft.el (gnus-draft-reminder): New function.
15721
15722         * gnus-art.el (gnus-sender-save-name): New function.
15723
15724 2001-02-13 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15725
15726         * mm-util.el (mm-mime-charset): Error message.
15727
15728 2001-02-13 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15729
15730         * message.el (message-check-news-body-syntax): Don't check mml lines.
15731
15732 2001-02-12 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15733
15734         * gnus-topic.el (gnus-subscribe-topics): Return nil if not
15735         subscribe.
15736
15737         * gnus-start.el (gnus-call-subscribe-functions): New function.
15738         (gnus-find-new-newsgroups): Use it.
15739         (gnus-ask-server-for-new-groups): Use it.
15740         (gnus-check-first-time-used): Use it.
15741         (gnus-subscribe-newsgroup-method): Grok a list of functions.
15742         (gnus-subscribe-options-newsgroup-method): Ditto.
15743         (gnus-subscribe-hierarchically): Return gnus-subscribe-newsgroup's
15744         return .
15745
15746 2001-02-12  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15747
15748         * gnus-cus.el (gnus-score-customize): Doc fix.
15749
15750 2001-02-11  Jesper Harder  <harder@ifa.au.dk>
15751
15752         * dgnushack.el (my-getenv): Typo.
15753
15754 2001-02-11 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15755
15756         * dgnushack.el (dgnushack-make-load): Don't autoload smiley functions.
15757
15758 2001-02-11 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15759
15760         * gnus-group.el (gnus-group-suspend): Offer save summaries.
15761
15762         * gnus-art.el (gnus-treat-leading-whitespace): New variable.
15763         (gnus-treatment-function-alist): Use it.
15764         (article-remove-leading-whitespace): New function.
15765         (gnus-article-make-menu-bar): Use it.
15766
15767         * gnus-sum.el (gnus-summary-wash-empty-map): Add
15768         remove-leading-whitespace.
15769         (gnus-summary-wash-map): Bind strip-headers-in-body to `W a',
15770         because of conflict.
15771
15772 2001-02-09 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15773
15774         * Makefile.in: Hack generating gnus-load.el.
15775         * dgnushack.el: Ditto.
15776         * gnus-load.el: Remove it.
15777
15778 2001-02-09 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15779
15780         * dgnushack.el : Add URLDIR.
15781
15782         * Makefile.in (EMACS_COMP): Ditto.
15783
15784 2001-02-09 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15785
15786         * gnus-cus.el (gnus-score-customize): Error on no score file.
15787
15788 2001-02-09 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15789
15790         * mm-decode.el (mm-merge-handles): New function.
15791
15792         * mm-view.el (mm-inline-message): Use it.
15793         (mm-view-message): Ditto.
15794
15795         * mm-partial.el (mm-inline-partial): Ditto.
15796
15797         * mm-extern.el (mm-inline-external-body): Ditto.
15798
15799         * gnus-art.el (gnus-mime-view-part): Ditto.
15800         (gnus-mime-view-part-as-type): Ditto.
15801         (gnus-mime-save-part-and-strip): Prevent users to strip in some
15802         cases.
15803
15804 2001-02-08 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15805
15806         * message.el (message-cancel-news): Allow to shoot foot.
15807         (message-supersede): Ditto.
15808
15809 2001-02-08  Tommi Vainikainen  <thv@iki.fi>
15810         Trivial patch.
15811
15812         * gnus-sum.el (gnus-simplify-subject-re): Use
15813         message-subject-re-regexp.
15814
15815 2001-02-08 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15816
15817         * nnmail.el (nnmail-expiry-target-group): Bind
15818         nnmail-cache-accepted-message-ids to nil.
15819
15820         * gnus-xmas.el (gnus-xmas-article-display-xface): Use binary
15821         coding system.
15822
15823 2001-02-07 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15824
15825         * qp.el (quoted-printable-encode-region): Make sure characters are
15826         between 00 and FF.  Don't check charset.
15827
15828         * mm-encode.el (mm-encode-content-transfer-encoding): Use unibyte
15829         in Emacs 20.
15830         * rfc2047.el (rfc2047-q-encode-region): Ditto.
15831
15832 2001-02-07 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15833
15834         * message.el (message-make-forward-subject): Argument decoded.
15835         (message-forward): Use it when digest.
15836
15837         * gnus-uu.el (gnus-uu-grab-articles): Shoot down original article
15838         buffer.
15839
15840 2001-02-07  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15841
15842         * message.el (message-generate-headers-first): Doc fix.
15843
15844 2001-02-07 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15845
15846         * gnus-art.el (article-make-date-line): Error proof.
15847
15848 2001-02-06 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15849
15850         * gnus-group.el (gnus-group-listing-limit): New variable.
15851         (gnus-group-prepare-flat-list-dead): Use old trick to speed up.
15852
15853         * gnus-topic.el (gnus-group-prepare-topics): Use gnus-killed-hashtb.
15854
15855 2001-02-06 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15856
15857         * message.el (message-newline-and-reformat): Special case for
15858         breaking at BOL.
15859
15860 2001-02-06  Per Abrahamsen  <abraham@dina.kvl.dk>
15861
15862         * gnus-uu.el (gnus-uu-save-article): Make the topics summary a
15863         message/rfc822.
15864
15865 2001-02-06 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15866
15867         * message.el (message-encode-message-body): Don't insert
15868         Content-Type if it is inside a mail.
15869
15870 2001-02-06 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15871
15872         * gnus-xmas.el (gnus-xmas-article-menu-add): Add
15873         gnus-article-commands-menu.
15874
15875         * gnus-sum.el (gnus-summary-make-menu-bar): Don't share menu bar
15876         in Emacs.
15877
15878         * gnus-start.el (gnus-read-descriptions-file): Use
15879         gnus-group-name-charset and gnus-group-charset-alist.
15880
15881 2001-02-04 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15882
15883         * gnus-sum.el (gnus-summary-mark-as-processable): Understand
15884         active region.
15885
15886         * gnus-start.el (gnus-group-change-level): Remove from both
15887         gnus-zombie-list and gnus-killed-list.
15888
15889 2001-02-04 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15890
15891         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Add
15892         gnus-subscribe-topics.
15893
15894         * gnus-cus.el (gnus-extra-topic-parameters): Fix doc.
15895
15896 2001-02-04 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15897
15898         * gnus-art.el (gnus-article-make-menu-bar): Make
15899         gnus-article-post-menu.
15900
15901         * gnus-xmas.el (gnus-xmas-article-menu-add): Add post menu.
15902
15903         * gnus-sum.el (gnus-summary-make-menu-bar): Use t if XEmacs.
15904
15905         * gnus-group.el (gnus-group-make-menu-bar): Ditto.
15906
15907         * message.el (message-mode-menu): Ditto.
15908
15909         * gnus-art.el (defvar): eval-when-compile.
15910
15911 2001-02-02 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15912
15913         * gnus-agent.el (gnus-agentize): Fix doc.
15914
15915 2001-02-02  Karl Kleinpaste  <karl@charcoal.com>
15916
15917         * mml.el (mml-preview): Bind `q'.
15918
15919 2001-02-02 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15920
15921         * mm-util.el (mm-mime-mule-charset-alist): non-Mule case.
15922
15923 2001-01-31  Dave Love  <fx@gnu.org>
15924
15925         * mm-util.el (mm-mime-mule-charset-alist)
15926         (mm-find-mime-charset-region): Consider mule-utf-8.
15927
15928 2001-01-31  Dave Love  <fx@gnu.org>
15929
15930         * gnus-art.el (gnus-article-x-face-command)
15931         (gnus-treat-display-xface, gnus-treat-display-smileys): Add
15932         :version.
15933
15934 2001-01-26  Dave Love  <fx@gnu.org>
15935
15936         * mm-util.el (mm-multibyte-string-p): New.
15937
15938 ;;      * qp.el: Remove un-logged bogus changes from 2000-12-20.
15939 ;;      (quoted-printable-encode-region): Doc fix.  Don't call
15940 ;;      string-as-multibyte on class.  Clarify line-folding.
15941         (quoted-printable-encode-string): Make temp buffer inherit
15942         string's multibyteness.
15943
15944 2001-01-23  Gerd Moellmann  <gerd@gnu.org>
15945
15946         * nnheader.el (toplevel): Don't require `gnus-util' at
15947         compile-time; this creates a circular dependency, and prevents
15948         a bootstrap.
15949
15950 2001-01-22  Andreas Schwab  <schwab@suse.de>
15951
15952         * nnheader.el (gnus-delete-line): Autoload it as a macro.
15953
15954 2001-01-31 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15955
15956         * nnmail.el (nnmail-remove-list-identifiers): Use consp.
15957
15958         * gnus-art.el (article-hide-list-identifiers): Ditto.
15959
15960         * gnus-sum.el (gnus-summary-remove-list-identifiers): Ditto.
15961
15962 2001-01-31 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15963
15964         * gnus-sum.el (gnus-summary-remove-list-identifiers): Similar.
15965
15966         * gnus-art.el (article-hide-list-identifiers): Similar.
15967
15968 2001-01-31  Karl Kleinpaste  <karl@charcoal.com>
15969
15970         * nnmail.el (nnmail-remove-list-identifiers): Improved.
15971
15972 2001-01-31 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15973
15974         * gnus-score.el (gnus-summary-score-entry): match may be an integer.
15975
15976 2001-01-30 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15977
15978         * gnus-util.el (gnus-string-equal): New function.
15979
15980         * gnus-art.el (article-hide-boring-headers): Use it.
15981
15982 2001-01-27  Karl Kleinpaste  <karl@charcoal.com>
15983
15984         * gnus-art.el (gnus-article-banner-alist): eGroups new banner.
15985
15986 2001-01-27 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15987
15988         * gnus-msg.el (gnus-msg-mail): Support switch-action.
15989
15990 2001-01-26 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15991
15992         * gnus-art.el (gnus-summary-save-in-pipe): Prompt for saving
15993         command if there is not last-saver.
15994
15995 2001-01-24 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
15996
15997         * nntp.el (nntp-open-connection): 201 is possible.
15998
15999 2001-01-24 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16000
16001         * rfc2047.el (rfc2047-encode): MIME charset is not coding system.
16002         (rfc2047-charset-encoding-alist): Add big5.
16003
16004 2001-01-24 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16005
16006         * gnus-agent.el (gnus-agent-add-server): Redraw the line.
16007         (gnus-agent-remove-server): Ditto.
16008         (autoload): gnus-server-update-server.
16009
16010         * gnus-srvr.el (gnus-server-line-format): Add %a.
16011         (gnus-server-line-format-alist): Add gnus-tmp-agent.
16012         (gnus-server-insert-server-line): Use it.
16013
16014 2001-01-24 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16015
16016         * mm-util.el (mm-mime-mule-charset-alist): Preferred MIME names
16017         GB2312 and Big5.
16018
16019 2001-01-24  Simon Josefsson  <sj@extundo.com>
16020
16021         * mail-source.el (mail-sources): Add :program specifier to IMAP
16022         mail source.
16023         (mail-source-fetch-imap): Map :program to `imap-shell-program'.
16024
16025 2001-01-24 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16026
16027         * gnus-score.el (gnus-score-lower-thread): Fix a doc typo.
16028
16029 2001-01-24 12:22:47  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16030
16031         * nntp.el (nntp-wait-for): Return the success code.
16032         (nntp-open-connection): Use it.
16033
16034 2001-01-11 11:49:02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16035
16036         * gnus-int.el (gnus-check-server): Allow breaking the opening.
16037
16038 2001-01-23 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16039
16040         * gnus-sum.el (gnus-summary-print-article): Remove process mark.
16041
16042 2001-01-22 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16043
16044         * gnus-sum.el (gnus-summary-print-article): Take one prefix
16045         argument. Allow to print several articles in one file.
16046
16047 2001-01-21 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16048
16049         * webmail.el (webmail-type-definition): netaddress changes.
16050
16051 2001-01-21 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16052
16053         * gnus.el: Fix copyright. Remove trailing spaces.
16054
16055         * message.el (message-forward): Use mule4.
16056
16057 2001-01-20 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16058
16059         * mm-util.el (mm-string-as-unibyte): New function.
16060
16061         * message.el (message-forward): Use it.
16062
16063 2001-01-19 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16064
16065         * message.el (message-cite-original-without-signature): Don't peel
16066         off the blank line.
16067         (message-get-reply-headers): Add Cc if it is not in follow-to.
16068
16069 2001-01-20  Simon Josefsson  <sj@extundo.com>
16070
16071         * mm-decode.el (mm-handle-multipart-from): Add.
16072         (mm-dissect-buffer): Save From: header value.
16073         (mm-security-from): Remove.
16074         (mm-possibly-verify-or-decrypt): Don't set mm-security-from.
16075
16076         * mml-smime.el (mml-smime-verify): Use `mm-handle-multipart-from'
16077         instead of `mml-security-from'.  Protect null from value.
16078
16079 2001-01-20  Simon Josefsson  <sj@extundo.com>
16080
16081         * mailcap.el (mailcap-mime-data): Run `gnumeric' on
16082         application/vnd.ms-excel attachments.
16083
16084 2001-01-19  Simon Josefsson  <sj@extundo.com>
16085
16086         * gnus-art.el (gnus-button-alist): Add `?=' to mailto URL regexp.
16087
16088 2001-01-19 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16089
16090         * message.el (message-ignored-mail-headers): Ditto.
16091
16092 2001-01-19  Simon Josefsson  <sj@extundo.com>
16093
16094         * message.el (message-ignored-news-headers): Only search beginning
16095         of line.
16096
16097 2001-01-19  ShengHuo Zhu  <zsh@cs.rochester.edu>
16098         Trivial patch from Alberto Lusiani  <a.lusiani@noemail.org>
16099
16100         * message.el (message-send-mail): Content-Type may not be there.
16101
16102 2001-01-18 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16103
16104         * gnus-ems.el (gnus-article-display-xface): Add BUFFER.
16105         * gnus-xmas.el (gnus-xmas-article-display-xface): Ditto.
16106
16107         * gnus-art.el (article-display-x-face): Insert X-Face if there is
16108         not.
16109
16110 2001-01-18 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16111
16112         * gnus-sum.el (gnus-summary-read-group-1): Don't test dead
16113         non-native groups.
16114
16115 2001-01-18 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16116
16117         * message.el (message-yank-original): Understand
16118         universal-argument.
16119
16120 2001-01-18 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16121
16122         * gnus-art.el (gnus-boring-article-headers): Add to-address.
16123         (article-hide-boring-headers): Ditto.
16124
16125         * mm-view.el (mm-inline-message): Insert a newline unless bolp.
16126
16127 2001-01-18 08:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16128
16129         * rfc2047.el (rfc2047-fold-region): Don't insert LWSP if there is
16130         one.
16131
16132 2001-01-16  Simon Josefsson  <simon@josefsson.org>
16133
16134         * message.el (message-make-in-reply-to): Add comment to message-id
16135         (old syntax, see 2000-08-02 change).
16136
16137 2001-01-16 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16138
16139         * gnus-art.el (gnus-url-mailto): Use gnus-msg-mail.
16140         (gnus-button-mailto): Setup message. Moved to gnus-msg.el.
16141         (gnus-button-reply): Ditto.
16142
16143 2001-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16144
16145         * gnus-art.el (article-display-x-face): Fix.
16146
16147 2001-01-15 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16148
16149         * gnus-art.el (article-display-x-face): Use
16150         gnus-original-article-buffer.
16151
16152 2001-01-15  Jack Twilley  <jmt@tbe.net>
16153
16154         * message.el (message-add-header): Move to point-max.
16155
16156 2001-01-15  Simon Josefsson  <simon@josefsson.org>
16157
16158         * smime.el (smime-CA-directory, smime-CA-file): Change default to
16159         nil, improve documentation.
16160         (smime-certificate-directory): Comment out false hints (until it
16161         is implemented).
16162
16163         * mml-smime.el (mml-smime-sign): Place user in customize buffer if
16164         there aren't any keys.
16165         (mml-smime-verify): If smime-CA-{file,directory} set, also try to
16166         verify certificate.  Default is changed to only check integrity.
16167         Improved security status texts.  If a certificate doesn't contain
16168         a email address, don't fail.
16169
16170         * smime.el (smime-noverify-region):
16171         (smime-noverify-buffer): New functions.  Verifies integrity only.
16172
16173 2001-01-12 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16174
16175         * gnus-group.el (gnus-group-sort-by-score): Reverse order.
16176
16177 2001-01-12 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16178
16179         * gnus-win.el (gnus-configure-windows): switch-to-buffer in XEmacs.
16180         (gnus-remove-some-windows): Ditto.
16181
16182 2001-01-12 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16183
16184         * gnus-art.el (article-make-date-line): 11th.
16185
16186 2001-01-11 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16187
16188         * mml2015.el (mml2015-gpg-encrypt): Remove CR.
16189         (mml2015-gpg-sign): Ditto.
16190
16191 2001-01-10 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16192
16193         * gnus.el: Sync with EMACS_PRETEST_21_0_95.
16194         * gnus.el (gnus-default-posting-charset): Bogus. Removed.
16195
16196 2001-01-08  Dave Love  <fx@gnu.org>
16197
16198         * mm-encode.el (mm-qp-or-base64): Don't base64 for the sake of a
16199         single character.
16200
16201         * mm-util.el (mm-mime-mule-charset-alist): Add Latin-{8,9}.
16202
16203         * message.el: Doc and message fixes.
16204         (message-send-rename-function)
16205         (message-make-forward-subject-function)
16206         (message-send-mail-function, message-reply-to-function)
16207         (message-wide-reply-to-function, message-followup-to-function)
16208         (message-distribution-function, message-auto-save-directory): Fix
16209         :type.
16210
16211         * gnus/mml.el (mml-parse-1): Frob mml-confirmation-set when
16212         proceeding after warnings.  Amend multipart warning message.
16213
16214 2001-01-04  Dave Love  <fx@gnu.org>
16215
16216         * gnus-util.el (nnmail-pathname-coding-system): Defvar when
16217         compiling.
16218         (gnus-make-directory): Require nnmail.
16219
16220         * mm-decode.el (mm-inline-media-tests): Add
16221         image/x-portable-bitmap.
16222         (mm-get-image): Grok pbm.
16223
16224 2001-01-10  Paul Stevenson  <p.stevenson@surrey.ac.uk>
16225
16226         * nnvirtual.el (nnvirtual-request-expire-articles): delq nil.
16227
16228 2001-01-09  Didier Verna  <didier@xemacs.org>
16229
16230         * dgnushack.el (dgnushack-compile): give a dummy value to
16231         `gnus-xmas-glyph-directory' for the time of compilation.
16232         * gnus-agent.el: moved some XEmacs specific hook add-ons from
16233         `gnus-xmas-[re]define' to avoid loosing user custom settings.
16234         * gnus-art.el: ditto.
16235         * gnus-group.el: ditto.
16236         * gnus-salt.el: ditto.
16237         * gnus-sum.el: ditto.
16238         * gnus-topic.el: ditto.
16239         * gnus-xmas.el (gnus-xmas-define): see above.
16240         * gnus-xmas.el (gnus-xmas-redefine): see above.
16241         * gnus-xmas.el (gnus-xmas-glyph-directory): generate a
16242         non-continuable error when the directory can't be found.
16243
16244 2001-01-09 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16245
16246         * mm-decode.el (mm-interactively-view-part): Don't copy-sequence
16247         handle.
16248         * gnus-art.el (gnus-mime-view-part): Copy it.
16249         (gnus-mime-view-part-as-type): Add into gnus-article-mime-handles.
16250
16251 2001-01-09  Michael Downes  <mjd@ams.org>
16252
16253         * gnus-sum.el (gnus-summary-read-group-1): More useful message.
16254
16255 2001-01-08 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16256
16257         * nnmail.el (nnmail-get-new-mail): Find group only if file is not
16258         orig-file. Use ',source.
16259
16260 2001-01-08 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16261
16262         * gnus-xmas.el (gnus-xmas-modeline-glyph):
16263         (gnus-xmas-group-startup-message):
16264         Detect gnus-xmas-glyph-directory when it is nil.
16265
16266 2001-01-08 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16267
16268         * pop3.el (pop3-get-message-count): Andrew Innes
16269         <andrewi@gnu.org>'s patch of 1999-12-01 was not fully committed.
16270
16271 2001-01-05 06:49:37  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16272
16273         * gnus-agent.el (gnus-agent-fetch-session): Say what we quit.
16274
16275         * time-date.el (time-to-number-of-days): New function.
16276
16277 2001-01-04 11:06:14  Gregory Chernov  <greg@visiontech-dml.com>
16278         Trivial patch.
16279
16280         * nnslashdot.el (nnslashdot-request-list): Always get the right
16281         sid.
16282
16283 2001-01-05 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16284
16285         * message.el (message-minibuffer-local-map): New keymap.
16286         (message-read-from-minibuffer): Use it.
16287         * gnus-msg.el (gnus-summary-resend-message): Use it
16288
16289 2001-01-04 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16290
16291         * gnus-start.el (gnus-display-time-event-handler): New function.
16292         (gnus-after-getting-new-news-hook): Use it.
16293
16294 2001-01-03 07:26:58  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16295
16296         * message.el (message-ignored-mail-headers): Add draft header.
16297
16298 2001-01-02 06:28:28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16299
16300         * gnus-sum.el (gnus-summary-expire-articles): Don't save
16301         excursion.
16302
16303         * nnslashdot.el (nnslashdot-request-list): Get the right year.
16304
16305 2001-01-01 00:52:44  Ed L. Cashin  <ecashin@coe.uga.edu>
16306         A revoked patch.
16307
16308         * gnus-sum.el (gnus-summary-expire-articles): Save excursion.
16309
16310 2000-12-31 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16311
16312         * qp.el (quoted-printable-decode-region): Don't backward-char.
16313
16314 2000-12-31 03:57:31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16315
16316         * gnus-draft.el: Mark articles as replied.
16317
16318         * gnus-sum.el (gnus-summary-add-mark): New function.
16319
16320         * gnus-group.el (gnus-add-mark): New function.
16321
16322         * gnus-sum.el (gnus-summary-buffer-name): New function.
16323         (gnus-summary-setup-buffer): Use it.
16324
16325         * gnus-draft.el: Set things up with the right post method and
16326         stuff.
16327
16328         * message.el (message-ignored-news-headers): Remove X-Draft-From.
16329
16330         * gnus-msg.el (gnus-inews-insert-draft-meta-information): New function.
16331
16332         * gnus.el (gnus-draft-meta-information-header): New variable.
16333
16334 2000-12-30 00:17:38  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16335
16336         * gnus-art.el (gnus-treatment-function-alist): Move the date
16337         functions before the header sorting functions.
16338
16339         * mm-uu.el (mm-uu-pgp-signed-extract-1): Unquote "- " quotes.
16340
16341         * dgnushack.el (dgnushack-compile): Message whether there is w3.
16342         Don't (push "/usr/share/emacs/site-lisp" load-path).
16343
16344         * gnus-cite.el (gnus-article-fill-cited-article): Don't add space
16345         to empty fill prefixes.
16346
16347 2000-12-30 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16348
16349         * nntp.el (nntp-open-connection): Kill pbuffer if process is nil.
16350         Suggested by Christoph Conrad <christoph.conrad@gmx.de>.
16351
16352 2000-12-30 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16353
16354         * nnheader.el (autoload): Autoload gnus-sorted-intersection.
16355
16356         * nnml.el (autoload): Move to nnheader.el.
16357
16358         * nnfolder.el (nnfolder-existing-articles): Reversed, i.e. sorted.
16359         (nnfolder-request-expire-articles): Use gnus-sorted-intersection.
16360         (nnfolder-retrieve-headers): Use intersection. Suggested by Jonas
16361         Kvarnstr\e,Av\e(Bm <jonkv@ida.liu.se>.
16362
16363 2000-12-30 00:17:38  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16364
16365         * gnus-art.el (article-make-date-line): Get the hours right.
16366         (gnus-ignored-headers): More hiding.
16367
16368         * nnmail.el (nnmail-expiry-wait): Not an integer.
16369
16370         * message.el (message-goto-body): Only expand abbrev when called
16371         interactively.
16372         (message-make-lines): Use it.
16373
16374 2000-12-29 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16375
16376         * gnus-msg.el (gnus-inews-yank-articles): Reparse headers.
16377
16378 2000-12-30 00:17:38  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16379
16380         * gnus-sum.el (gnus-summary-limit-include-expunged): Really
16381         include the expunged articles.
16382
16383         * gnus-group.el (gnus-group-sort-by-server): New function.
16384
16385         * gnus.el (gnus-method-to-server-name): New function.
16386         (gnus-group-prefixed-name): Use it.
16387
16388         * gnus-group.el (gnus-group-sort-function): Doc fix.
16389         (gnus-group-sort-groups-by-server): New command.
16390
16391 2000-12-29 13:25:10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16392
16393         * gnus-art.el (gnus-treat-date-english): New variable.
16394         (article-date-english): New command.
16395         (gnus-english-month-names): New variable.
16396         (article-make-date-line): Do 'english.
16397
16398         * gnus-cite.el (gnus-article-fill-cited-article): Add a space
16399         after the fill prefix.
16400
16401         * gnus-sum.el (gnus-summary-make-menu-bar): Removed "Enter
16402         score...".
16403
16404         * gnus-art.el (gnus-ignored-headers): Hide more headers.
16405
16406         * message.el (message-mode-map): Bind comment-region.
16407
16408         * gnus-art.el (gnus-mime-display-part): Let w3 display
16409         multipart/related.
16410
16411         * mm-bodies.el (mm-long-lines-p): New function.
16412         (mm-body-encoding): Use it.
16413         (mm-body-encoding): Encode articles with lines longer than 1000
16414         characters.
16415
16416 2000-12-29 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16417
16418         * mm-util.el (mm-enable-multibyte): Use
16419         default-enable-multibyte-characters.
16420         (mm-enable-multibyte-mule4): Ditto.
16421         (mm-disable-multibyte): Test XEmacs.
16422         (mm-disable-multibyte-mule4): Ditto.
16423         (mm-with-unibyte-current-buffer): Simplified.
16424         (mm-with-unibyte-current-buffer-mule4): Ditto.
16425
16426 2000-12-28 19:44:56  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16427
16428         * nnheaderxm.el (nnheader-string-as-multibyte): New alias.
16429
16430         * nnheader.el (nnheader-string-as-multibyte): New alias.
16431
16432         * mm-view.el (mm-inline-text): Warn when bugging out in w3.
16433
16434         * gnus-uu.el (gnus-message-process-mark): New function.
16435         (gnus-uu-mark-by-regexp): Use it.
16436         (gnus-new-processable): New function.
16437
16438 2000-12-28 19:21:57  Inge Frick  <inge@nada.kth.se>
16439          Trivial patch.
16440
16441         * gnus-sum.el (gnus-no-mark): New variable.
16442
16443 2000-11-01 01:12:29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16444
16445         * nnwfm.el (nnwfm-create-mapping): Remove quote marks and
16446         backslashes.
16447
16448 2000-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16449
16450         * gnus-art.el (gnus-article-banner-alist): Remove duplicate
16451         definition.
16452
16453 2000-12-25 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16454
16455         * dgnushack.el (dgnushack-compile): elc is in the current directory.
16456
16457         * qp.el (quoted-printable-encode-region): Don't check multibyte in
16458         XEmacs.
16459
16460 2000-12-25  Lloyd Zusman  <ljz@asfast.com>
16461         Trivial patch.
16462
16463         * mml.el (mml-read-tag): Save tag location.
16464
16465 2000-12-25  Simon Josefsson  <simon@josefsson.org>
16466
16467         * starttls.el: Sync with Emacs 21.
16468
16469 2000-12-24 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16470
16471         * message.el (message-mail): Support yank-action.
16472
16473         * message.el (message-setup): Revoke the last change.
16474
16475 2000-12-24 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16476
16477         * message.el (message-setup): Use cons. Suggested by Johan Vromans
16478         <jvromans@squirrel.nl>.
16479
16480 2000-12-24  Simon Josefsson  <sj@extundo.com>
16481
16482         * mm-bodies.el (mm-decode-content-transfer-encoding): Preserve
16483         mailing list junk at end of part.
16484
16485 2000-12-23  Simon Josefsson  <sj@extundo.com>
16486
16487         * nnimap.el (nnimap-expiry-target): New function.
16488         (nnimap-request-expire-articles): Use it.
16489
16490 2000-12-22 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16491
16492         * gnus.el (gnus-group-parameters-more): New variable.
16493         * gnus-cus.el (gnus-group-customize): Use it.
16494
16495         * gnus.el (gnus-define-group-parameter): New macro.
16496         (auto-expire): Use it
16497         (total-expire): Use it.
16498         * gnus-art.el (banner): Use it.
16499
16500         * mml.el (mml-parse): save-excursion. Suggested by Lloyd Zusman
16501         <ljz@asfast.com>.
16502
16503 2000-12-22 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16504
16505         * gnus-topic.el (gnus-topic-create-topic): Use list.
16506
16507         * gnus-vm.el (gnus-summary-save-article-vm): Require gnus-art
16508         before binding gnus-default-article-saver.
16509
16510         * gnus-sum.el (gnus-summary-save-article):
16511         (gnus-summary-pipe-output):
16512         (gnus-summary-save-article-mail):
16513         (gnus-summary-save-article-rmail):
16514         (gnus-summary-save-article-file):
16515         (gnus-summary-write-article-file):
16516         (gnus-summary-save-article-body-file): Ditto.
16517
16518         * gnus-mh.el (gnus-summary-save-article-folder): Ditto.
16519
16520 2000-12-22 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16521
16522         * gnus-art.el (gnus-mime-security-button-map):
16523         (gnus-mime-button-map): Add parent.
16524
16525 2000-12-22 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16526
16527         * messagexmas.el (message-xmas-redefine): New function.
16528
16529         * message.el: Use it.
16530
16531         * gnus-art.el (gnus-article-check-hidden-text): Return t.
16532
16533         * gnus-util.el (gnus-remove-text-properties-when): Return t.
16534
16535 2000-12-22 03:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16536
16537         * mm-decode.el (mm-dissect-multipart): Avoid errors owing to
16538         malformatted messages.
16539
16540 2000-12-22 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16541
16542         * mm-util.el (mm-image-load-path): New function.
16543
16544         * gnus-group.el (gnus-group-make-tool-bar): Use it.
16545
16546         * gnus-sum.el (gnus-summary-make-tool-bar): Use it.
16547
16548         * message.el (message-tool-bar-map): Use it.
16549
16550         * Makefile.in (install-el): New rule.
16551
16552 2000-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16553
16554         * gnus-art.el (article-treat-dumbquotes): Quote \.
16555
16556 2000-12-21 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16557
16558         * gnus-art.el (gnus-treat-emphasize): Don't treat emphasis if
16559         Emacs 20 runs on a terminal.
16560
16561 2000-12-21 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16562
16563         * gnus-msg.el (gnus-bug): Revert to save-excursion.
16564
16565         * mml.el (gnus-add-minor-mode): Autoload.
16566
16567         * message.el (message-forward): Save-restriction.
16568
16569 2000-12-21  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
16570
16571         * gnus-art.el (article-treat-dumbquotes): More doc, provided by
16572         Paul Stevenson <p.stevenson@surrey.ac.uk>
16573
16574 2000-12-21 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16575
16576         * gnus-ml.el (gnus-mailing-list-mode-map): Use C-c C-n prefix.
16577
16578         * mml.el (gnus-ems): Don't require.
16579
16580         * gnus.el (gnus-decode-rfc1522): Removed.
16581         (gnus-set-text-properties): Define.
16582
16583 2000-12-21 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16584
16585         * gnus-art.el (gnus-mime-*): handle may be nil.
16586
16587         * gnus-sum.el (gnus-summary-mode): Turn on gnus-mailing-list-mode.
16588
16589         * gnus.el (gnus-group-remove-excess-properties): Not defined
16590         in gnus-xmas.
16591
16592 2000-12-20 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16593
16594         * message.el (message-mail-user-agent): Add :version.
16595
16596 2000-12-21  Miles Bader  <miles@gnu.org>
16597
16598         * message.el (message-mode): Set `comment-start' to the  yank prefix.
16599
16600 2000-12-20 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16601
16602         * message.el (message-mail-user-agent): New variable.
16603         (message-setup): Renamed to message-setup-1. Support
16604         mail-user-agent.
16605         (message-mail-user-agent): New function.
16606         (message-mail): Use it.
16607         (message-reply): Use it.
16608         (message-resend): Use it.
16609         (message-mail-other-window): Use it.
16610         (message-mail-other-frame): Use it.
16611
16612         * gnus-msg.el (gnus-bug): Support mail-user-agent.
16613
16614 2000-12-20 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16615
16616         * message.el (message-tool-bar-map): Simplify.
16617         (message-narrow-to-head-1): New function.
16618         (message-narrow-to-head): Use it.
16619         (message-reply): Ditto.
16620         (message-cancel-news): Ditto.
16621         (message-supersede): Ditto.
16622         (message-make-forward-subject): Ditto.
16623         (message-bounce): Ditto.
16624
16625 2000-12-20 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16626
16627         * uudecode.el (uudecode-decode-region-external): make-temp-file
16628         may not be defined.
16629
16630         * binhex.el (defalias): eval-and-compile.
16631
16632         * message.el (message-tool-bar-map): New function.
16633         (message-mode): Use it.
16634
16635 2000-12-20 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16636
16637         * nntp.el (nntp-find-connection): Remove the entry.
16638         (nntp-retrieve-groups): (gnus-buffer-live-p buf).
16639
16640 2000-12-20 05:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16641
16642         * gnus-msg.el (gnus-summary-mail-forward): Use original buffer.
16643
16644         * message.el (message-forward): Copy buffer in unibyte mode.
16645
16646 2000-12-20 04:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16647
16648         * message.el (message-make-forward-subject): Don't widen. Decode.
16649         (message-forward): Don't decode subject.
16650
16651 2000-12-20  Christoph Conrad  <C.Conrad@cli.de>
16652
16653         * qp.el (quoted-printable-encode-region): Upcase QP.
16654
16655 2000-12-20 03:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16656
16657         * mm-decode.el (mm-possibly-verify-or-decrypt): Use
16658         mail-extract-a-c instead. Don't depend on Gnus.
16659
16660         * mml.el (gnus-ems): Require it.
16661
16662         * gnus-msg.el (gnus-summary-mail-forward):
16663
16664         * message.el (message-forward):  Move mime-to-mml here.
16665
16666 2000-12-20 02:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16667
16668         * gnus-group.el, gnus-sum.el, message.el: Add :help unless Emacs.
16669         * gnus-art.el (gnus-insert-mime-button): Simplify.
16670         (gnus-mime-display-alternative): Ditto.
16671         (gnus-insert-mime-security-button): Ditto.
16672
16673 2000-12-20 01:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16674
16675         * gnus-util.el (gnus-add-text-properties-when): In XEmacs,
16676         text-property-not-all doesn't return nil when start=mark(end).
16677         (gnus-remove-text-properties-when): Ditto.
16678
16679 2000-12-20 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16680
16681         * gnus-start.el (gnus-group-change-level): Remove group from
16682         gnus-active-hashtb if real killed.
16683
16684 2000-12-19 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16685
16686         * gnus-art.el (gnus-insert-mime-button): Emacs20 needs local-map.
16687         (gnus-mime-display-alternative): Ditto.
16688         (gnus-insert-mime-security-button): Ditto.
16689
16690 2000-12-19 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16691
16692         * gnus-start.el (gnus-group-change-level): Don't add it into
16693         killed-list if it was killed.
16694
16695 2000-12-19 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16696
16697         * nnmbox.el (nnmbox-file-coding-system): Use binary.
16698         (nnmbox-active-file-coding-system): Ditto.
16699
16700         * gnus-cus.el (gnus-group-parameters): Add posting-style.
16701
16702 2000-12-19 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16703
16704         * gnus.el (gnus-version):
16705         (gnus-version-number): Set to Oort Gnus 0.01.
16706
16707         * gnus-art.el (gnus-mime-security-button-map):
16708         (gnus-insert-mime-security-button): Fix for Emacs21.
16709
16710 2000-12-19 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16711
16712         * gnus-group.el, gnus-sum.el, message.el: Comment out :help in
16713         easymenu, because XEmacs doesn't understand :help.
16714
16715         * mm-uu.el: Require binhex.
16716
16717 2000-12-19 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
16718
16719         * gnus.el: Merged. Emacs21 CVS tag is zsh-merge-ognus-1.
16720
16721 2000-12-19  ShengHuo ZHU  <zsh@cs.rochester.edu>
16722
16723         * mm-util.el (mm-charset-synonym-alist): Fix a typo.
16724
16725 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
16726
16727         * *.xpm, *.pbm: Convert icons icons to size 24x24.
16728
16729 2000-12-18  Dave Love  <fx@gnu.org>
16730
16731         * gnus-msg.el (news-setup, news-reply-mode): Don't autoload
16732         (unused).
16733
16734 2000-12-13  Miles Bader  <miles@gnu.org>
16735
16736         * smiley-ems.el (smiley-region): Bind `inhibit-point-motion-hooks'
16737         to t, so that we don't get stuck while trying to smilefy
16738         intangible text.
16739
16740 2000-12-12  Gerd Moellmann  <gerd@gnu.org>
16741
16742         * smiley-ems.el (smiley-regexp-alist): Make regexps match
16743         at the end of the buffer.
16744         (smiley-region): In the loop, move to the end of the submatch
16745         matching the smiley instead of using the end of the match
16746         of the whole regexp.
16747
16748 2000-12-12  Eli Zaretskii  <eliz@is.elta.co.il>
16749
16750         * message.el (message-mode): Doc fix.
16751
16752 2000-12-12  Gerd Moellmann  <gerd@gnu.org>
16753
16754         * smiley-ems.el (smiley-region): Doc fix.
16755
16756 2000-12-11  Miles Bader  <miles@gnu.org>
16757
16758         * gnus-sum.el (gnus-summary-recenter): When trying to keep the
16759         bottom line visible, check to see if it's partially obscured, and
16760         if so, either scroll one more line to make it fully visible, or
16761         revert to showing the second line from the top.
16762
16763 2000-12-07  Dave Love  <fx@gnu.org>
16764
16765         * mailcap.el (mailcap-download-directory)
16766         * gnus-audio.el (gnus-audio-directory)
16767         * smiley-ems.el (smiley-data-directory): Fix :type.
16768
16769 2000-11-30  Dave Love  <fx@gnu.org>
16770
16771         * message.el (message-auto-save-directory): Use
16772         file-name-as-directory.
16773         (message-set-auto-save-file-name): Create
16774         message-auto-save-directory if necessary.
16775         (message-replace-chars-in-string): Removed -- unused.
16776         (message-mail-alias-type): Customize.
16777         (message-headers): Remove duplicate defgroup.
16778
16779 2000-11-29  Dave Love  <fx@gnu.org>
16780
16781         * qp.el (quoted-printable-decode-region): Use error, not message
16782         to report malformed text (like base64).  Amend message.
16783
16784 2000-11-29  Miles Bader  <miles@gnu.org>
16785
16786         * message.el (message-header-lines): Fontify tag.
16787
16788 2000-11-27  Dave Love  <fx@gnu.org>
16789
16790         * nnlistserv.el: Ignore errors when requiring nnweb and avoid a
16791         compiler warning.
16792
16793 ;2000-11-26  Dave Love  <fx@gnu.org>
16794 ;
16795 ;       * mm-uu.el (mm-uu-configure-list): Fix typo in :type.
16796 ;
16797 2000-11-23  Dave Love  <fx@gnu.org>
16798
16799         * uu-post.pbm, uu-decode.pbm: new files from XPMs.
16800
16801         * mm-uu.el (uudecode): Require.
16802         (uudecode-decode-region, uudecode-decode-region-external): Don't
16803         autoload.
16804         (mm-uu-copy-to-buffer): Doc fix.
16805         (mm-uu-decode-function, mm-uu-binhex-decode-function): Doc, custom
16806         type fix.
16807
16808         * mailcap.el: Doc fixes.
16809         (mailcap-mime-data): Various adjustments.
16810         (mailcap): New group.
16811         (mailcap-download-directory): Customize.
16812         (mailcap-generate-unique-filename, mailcap-binary-suffixes)
16813         (mailcap-temporary-directory): Deleted (unused).
16814         (mailcap-unescape-mime-test): Simplify slightly.
16815         (mailcap-viewer-passes-test): Use functionp.
16816         (mailcap-command-p): Aliased to executable-find.
16817
16818         * rfc2047.el (rfc2047-encode-message-header): Don't encode if
16819         default-enable-multibyte-characters is nil.
16820
16821 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
16822
16823         * gnus-group.el (gnus-group-make-tool-bar): Fix a paren typo.
16824
16825 2000-11-21  Dave Love  <fx@gnu.org>
16826
16827         * gnus-art.el (gnus-mime-button-map): Don't inherit from
16828         gnus-article-mode-map.
16829 ;       (gnus-mime-button-menu): Use mouse-set-point.
16830         (gnus-insert-mime-button, gnus-mime-display-alternative)
16831         (gnus-mime-display-alternative): Don't use local-map property.
16832
16833 2000-11-17  Dave Love  <fx@gnu.org>
16834
16835         * uudecode.el (uudecode-insert-char): Fix bogus feature test.
16836         (uudecode-decode-region-external): Doc fix.  Use with-temp-buffer
16837         and make-temp-file.
16838         (uudecode-decode-region): Doc fix.
16839
16840 2000-11-14  Dave Love  <fx@gnu.org>
16841
16842         * cu-exit.pbm, exit-summ.pbm, followup.pbm, fuwo.pbm:
16843         * mail-reply.pbm, next-ur.pbm, post.pbm, prev-ur.pbm:
16844         * reply-wo.pbm, reply.pbm, rot13.pbm, save-aif.pbm, save-art.pbm:
16845         New files, derived from the XPMs.
16846
16847 2000-11-10  Dave Love  <fx@gnu.org>
16848
16849         * gnus-agent.el (gnus-agent-confirmation-function): Add :version.
16850         (gnus-agent-lib-file, gnus-agent-load-alist)
16851         (gnus-agent-save-alist, gnus-agent-article-name): Use
16852         expand-file-name.
16853
16854         * gnus-group.el (gnus-group-name-charset-method-alist): Add
16855         :version.
16856         (nnkiboze-score-file): Defvar when compiling.
16857
16858         * gnus-start.el (gnus-read-newsrc-file): Add :version.
16859
16860         * gnus-art.el (gnus-article-banner-alist)
16861         (gnus-emphasize-whitespace-regexp, gnus-ignored-mime-types)
16862         (gnus-article-date-lapsed-new-header)
16863         (gnus-article-mime-match-handle-function, gnus-mime-action-alist)
16864         (gnus-treat-strip-list-identifiers, gnus-treat-date-iso8601)
16865         (gnus-treat-strip-headers-in-body)
16866         (gnus-treat-capitalize-sentences, gnus-treat-play-sounds)
16867         (gnus-treat-translate): Add :version.
16868         (gnus-article-mime-part-function): Fix defcustom.
16869
16870         * nnmail.el (nnmail-expiry-target)
16871         (nnmail-scan-directory-mail-source-once, nnmail-extra-headers)
16872         (nnmail-split-header-length-limit): Add :version.
16873
16874         * gnus-sum.el (gnus-auto-expirable-marks)
16875         (gnus-inhibit-user-auto-expire, gnus-list-identifiers)
16876         (gnus-extra-headers, gnus-ignored-from-addresses)
16877         (gnus-newsgroup-ignored-charsets)
16878         (gnus-group-highlight-words-alist)
16879         (gnus-summary-show-article-charset-alist): Add :version.
16880
16881         * catchup.pbm, describe-group.pbm, exit-gnus.pbm, get-news.pbm:
16882         gnntg.pbm, kill-group.pbm, subscribe.pbm, unsubscribe.pbm: New
16883         files, converted from the XPMs.
16884
16885         * gnus-cache.el (gnus-cache-active-file): Don't use
16886         file-name-as-directory on directory.
16887         (gnus-cache-file-name): Use expand-file-name, not concat.  Don't
16888         use file-name-as-directory on directory.
16889
16890         * time-date.el (timezone-make-date-arpa-standard): Autoload.
16891         (date-to-time): Use it.
16892
16893 ;       * message.el (message-mode) <adaptive-fill-regexp>:
16894 ;       <adaptive-fill-first-line-regexp>: Use [:alnum:] in regexp range.
16895 ;       (message-newline-and-reformat): Likewise.
16896         (message-forward-as-mime, message-forward-ignored-headers)
16897         (message-buffer-naming-style, message-default-charset)
16898         (message-dont-reply-to-names, message-send-mail-partially-limit):
16899         Add :version.
16900
16901         * mm-util.el: Doc fixes.
16902         (mm-mime-charset): Don't use the raw result of
16903         mm-preferred-coding-system.
16904         (mm-with-unibyte-buffer, mm-with-unibyte-current-buffer)
16905         (mm-with-unibyte): Simplify.
16906
16907         * gnus-int.el (gnus-start-news-server): Use expand-file-name, not
16908         concat.
16909
16910         * pop3.el (pop3-version): Deleted.
16911         (pop3-make-date): New function, avoiding message-make-date.
16912         (pop3-munge-message-separator): Use it.
16913
16914 2000-11-09  Dave Love  <fx@gnu.org>
16915
16916         * gnus-group.el (gnus-group-make-directory-group)
16917         (gnus-group-fetch-faq): Use expand-file-name.
16918         (gnus-group-fetch-faq): Simplify completing-read form.
16919
16920         * mm-bodies.el (mm-encode-body): Use mm-multibyte-p, don't just
16921         test for Mule.
16922
16923         * message.el (tool-bar-map): Defvar when compiling.
16924
16925         * gnus-setup.el (running-xemacs, gnus-use-installed-tm)
16926         (gnus-tm-lisp-directory): Deleted.
16927         (gnus-use-installed-mailcrypt, gnus-emacs-lisp-directory): Use
16928         (featurep 'xemacs).
16929         (gnus-gnus-lisp-directory, gnus-mailcrypt-lisp-directory)
16930         (gnus-mailcrypt-lisp-directory, gnus-bbdb-lisp-directory): Remove
16931         version numbers from file names.
16932
16933 2000-11-08  Dave Love  <fx@gnu.org>
16934
16935         * mm-view.el: Use featurep for XEmacs test.
16936         (mm-inline-message): Test for `remove-specifier'; don't use
16937         condition-case.
16938
16939         * mm-bodies.el (mm-encode-body): Use mm-multibyte-p.
16940
16941         * gnus-score.el (gnus-score-load-file): Use expand-file-name.
16942         (gnus-score-find-bnews): Don't concat "".
16943
16944         * cu-exit.xpm, prev-ur.xpm, next-ur.xpm, post.xpm, fuwo.xpm:
16945         * followup.xpm, uu-post.xpm, uu-decode.xpm, mail-reply.xpm:
16946         * reply.xpm, reply-wo.xpm, rot13.xpm, save-aif.xpm, save-art.xpm:
16947         * exit-summ.xpm: New files, renamed from icons by Luis Fernandes.
16948
16949         * gnus-sum.el: Put some defvars in eval-when-compile.
16950         (gnus-summary-mode-hook): Add :options.
16951         (gnus-summary-make-menu-bar): Add some :help, used by tool bar.
16952         (gnus-summary-tool-bar-map): New variable.
16953         (gnus-summary-make-tool-bar): New function.
16954         (gnus-summary-mode): Put kill-all-local-variables first.
16955
16956         * gnus-group.el (gnus-group-toolbar-map): New variable.
16957         (gnus-group-make-tool-bar): Rewritten.
16958         (gnus-group-mode): Put kill-all-local-variables first.
16959
16960         * rfc2047.el: Require gnus-util.
16961
16962         * nnml.el (gnus-sorted-intersection): Autoload.
16963
16964         * nnheader.el: Wrap subst-char-in-string def in eval-and-compile.
16965         Put some defvars in eval-when-compile.
16966         (gnus-intersection, gnus-sorted-complement):  Autoload.
16967
16968         * imap.el (imap-point-at-eol): New, replacing gnus-point-at-eol.
16969
16970         * mm-encode.el (mm-body-7-or-8): Autoload.
16971
16972         * mm-decode.el (mm-insert-inline): Autoload.
16973
16974         * mml.el:
16975         * message.el: Put some defvars in eval-when-compile.
16976
16977         * gnus-msg.el: Put some defvars in eval-when-compile.
16978         (gnus-msg-mail): Move after gnus-setup-message.
16979
16980         * smiley-ems.el (smiley-data-directory, smiley-regexp-alist): Doc fix.
16981
16982 2000-11-07  Dave Love  <fx@gnu.org>
16983
16984         * gnus-util.el (nnheader): Don't require message (recursive
16985         autoload).
16986
16987         * uudecode.el: Avoid compiler warnings.
16988
16989         * rfc2047.el: (rfc2047-fold-region): Use gnus-point-at-bol.
16990         (rfc2047-charset-encoding-alist): Add iso-8859-1[45].
16991
16992 2000-11-06  Dave Love  <fx@gnu.org>
16993
16994         * gnus-salt.el (gnus-binary-mode): Fix call to gnus-add-minor-mode.
16995
16996         * uudecode.el: Use (featurep 'xemacs).  Require cl when compiling.
16997         (uudecode-char-int): New alias, replacing char-int.
16998         (uudecode-decode-region): Don't call buffer-disable-undo.
16999
17000 ;       * mm-uu.el (mm-uu-configure): Unquote lambda.
17001 ;       (mm-uu-configure-list): Doc fix.
17002 ;
17003 ;       * earcon.el (running-xemacs): Don't define.
17004 ;
17005 ;2000-11-03  Stefan Monnier  <monnier@cs.yale.edu>
17006 ;
17007 ;       * message.el (message-font-lock-keywords): Match a final newline
17008 ;       to help font-lock's multiline support.
17009 ;
17010 2000-11-03  Dave Love  <fx@gnu.org>
17011
17012         * gnus-nocem.el (gnus-nocem-check-article-limit): Default to 500.
17013
17014         * mm-partial.el (mm-inline-partial): Space-prefix temp buffer
17015         name.
17016
17017         * gnus-cus.el (gnus-group-parameters) <gcc-self>: Fix custom type.
17018         <banner>: Fix custom type, doc.
17019
17020         * mm-decode.el (mm-display-external): Space-prefix temp buffer
17021         name.  Don't disable undo explicitly.
17022
17023 ;2000-11-02  Dave Love  <fx@gnu.org>
17024 ;
17025 ;       * message.el (message-font-lock-keywords): Use [:alpha:] for
17026 ;       cite-prefix.
17027
17028 2000-11-01  Dave Love  <fx@gnu.org>
17029
17030         * rfc2047.el (base64): Require unconditionally.
17031         (message-posting-charset): Defvar when compiling.
17032         (rfc2047-encode-message-header, rfc2047-encodable-p): Require
17033         message.
17034
17035         * gnus-sum.el (nnoo): Require.
17036         (mm-uu-dissect): Autoload.
17037
17038         * mml.el (mml-parse-1): Clarify message.
17039         (mml-minibuffer-read-type): Use mailcap-mime-types.
17040
17041 2000-11-01  Stefan Monnier  <monnier@cs.yale.edu>
17042
17043         * mml.el: Fix a typo in the requiring of CL.
17044
17045 2000-11-01  Dave Love  <fx@gnu.org>
17046
17047         * utf7.el: Require cl when compiling.
17048
17049         * binhex.el: Use (featurep 'xemacs).
17050         (binhex-char-int): New alias, replacing char-int.  Change callers.
17051         (binhex-decode-region): Simplify work buffer code.
17052         (binhex-decode-region-external): Use expand-file-name, not concat.
17053
17054 2000-10-30  Dave Love  <fx@gnu.org>
17055
17056         * gnus-art.el: Fix 2000-10-27 change properly.
17057
17058 2000-10-28  Miles Bader  <miles@gnu.org>
17059
17060         * gnus-art.el (gnus-read-save-file-name): Remove extraneous paren.
17061
17062 2000-10-27  Dave Love  <fx@gnu.org>
17063
17064         * gnus-group.el (gnus-group-make-menu-bar): Add some :help
17065         strings.
17066         (gnus-group-make-tool-bar): New function.
17067         (gnus-group-mode): Use it.
17068
17069         * message.el (message-mode-menu): Add some :help strings.
17070         (message-mode) [message-tool-bar-map]: Define tool-bar-map.
17071         (featurep): Use (featurep 'xemacs).  Install tool bar for Emacs.
17072
17073         * catchup.xpm, exit-gnus.xpm, gnntg.xpm, subscribe.xpm:
17074         * describe-group.xpm, get-news.xpm, kill-group.xpm:
17075         * unsubscribe.xpm: New files.  Renamed icons from Luis Fernandes.
17076
17077         * mm-decode.el (mm-valid-and-fit-image-p): Don't test
17078         display-graphic-p here.
17079
17080 2000-10-27  Miles Bader  <miles@lsi.nec.co.jp>
17081
17082         * gnus-ems.el (gnus-ems-redefine): Use (featurep 'xemacs) instead
17083         of the `gnus-xemacs' variable, as the latter has been removed.
17084         * gnus-start.el (gnus-1, gnus-read-descriptions-file): Likewise.
17085         * gnus-art.el (gnus-treat-display-xface)
17086         (gnus-treat-display-smileys, gnus-treat-display-picons)
17087         (gnus-article-read-summary-keys): Likewise.
17088
17089 2000-10-26  Dave Love  <fx@gnu.org>
17090
17091         (defvar): Use rmail-spool-directory unconditionally.
17092
17093 2000-10-18  Dave Love  <fx@gnu.org>
17094
17095         * mm-bodies.el (mm-uu-decode-function)
17096         (mm-uu-binhex-decode-function): Defvar when compiling.
17097
17098         * gnus-nocem.el (gnus-nocem-issuers): Update.
17099         (gnus-nocem-check-from): New option.
17100         (gnus-nocem-scan-groups): Use it.
17101         (gnus-nocem-check-article): Bind gnus-newsgroup-name.
17102         (gnus-nocem-check-article-limit): Add :version.
17103
17104 2000-10-16  Stefan Monnier  <monnier@cs.yale.edu>
17105
17106         * ietf-drums.el (mm-util): Require CL when compiling.
17107
17108 2000-10-15  Dave Love  <fx@gnu.org>
17109
17110         * qp.el: Require mm-util.
17111
17112 2000-10-13  Dave Love  <fx@gnu.org>
17113
17114         * qp.el (quoted-printable-decode-region): Avoid invalid
17115         coding-systems.
17116
17117 2000-10-12  Gerd Moellmann  <gerd@gnu.org>
17118
17119         * mm-bodies.el: Don't require `mm-uu' at compile-time; it leads
17120         to a recursive load.
17121
17122 2000-10-12  Dave Love  <fx@gnu.org>
17123
17124         * mm-util.el (mm-charset-synonym-alist): Add windows-1252.
17125
17126         * gnus.el (gnus-group-startup-message): Check for PBM image.
17127
17128 2000-10-09  Dave Love  <fx@gnu.org>
17129
17130         * mail-source.el (mail-source-fetch-imap): Bind
17131         default-enable-multibyte-characters rather than using
17132         mm-disable-multibyte.
17133
17134 2000-10-05  Dave Love  <fx@gnu.org>
17135
17136         * qp.el (mm-decode-coding-region, mm-encode-coding-region):
17137         Autoload.
17138         (quoted-printable-decode-region):  Rename arg which confused
17139         charset with coding-system.  Don't use nonascii-insert-offset.
17140         Coding-system encode the region initially.  Don't recognize `=='
17141         as valid QP.  Coding-system decode the region finally.
17142         (quoted-printable-decode-string): Rename arg which confused
17143         charset with coding-system.
17144
17145         * mm-bodies.el: Require mm-uu, Don't require qp, uudecode.
17146         (mm-encode-body): Apply mm-charset-to-coding-system to arg of
17147         mm-encode-coding-region.
17148         (mm-decode-body, mm-decode-string): Rename variables which
17149         confused charset with coding-system.
17150         (binhex-decode-region): Don't autoload.
17151         (mm-body-encoding): Require message.
17152         (mm-decode-content-transfer-encoding): Require mm-uu in relevant
17153         cond branches.
17154
17155         * gnus-art.el (article-de-quoted-unreadable)
17156         (article-de-base64-unreadable): Fold search case
17157         rather than downcasing string.  Apply mm-charset-to-coding-system
17158         to arg of quoted-printable-decode-region.
17159
17160 2000-10-04  Dave Love  <fx@gnu.org>
17161
17162         * gnus-ems.el: Don't turn off compiler warnings in local vars.
17163         Require ring when compiling.
17164         (gnus-article-compface-xbm): New variable.
17165
17166 2000-10-04  Dave Love  <fx@gnu.org>
17167
17168         * smiley-ems.el (smiley-regexp-alist, smiley-update-cache): Use
17169         pbm images.
17170
17171         * frown.pbm, smile.pbm, wry.pbm: New files.
17172
17173         * frown.xbm, smile.xbm, wry.xbm: Deleted.
17174
17175 2000-10-03  Dave Love  <fx@gnu.org>
17176
17177         * mail-source.el (mail-sources): Revert to nil.
17178
17179         * nnmail.el (nnmail-spool-file): Revert to `((file))'.
17180
17181         * qp.el: Don't require mm-util.
17182         (quoted-printable-decode-region): Rewritten.
17183         (quoted-printable-decode-string, quoted-printable-encode-region):
17184         Doc fix.
17185         (quoted-printable-encode-region): Barf on multibyte characters.
17186         Maybe make the class multibyte.  Upcase chars, not formatted
17187         strings.  Allow mm-use-ultra-safe-encoding to be unbound.
17188         (quoted-printable-encode-string): Don't use
17189         mm-with-unibyte-buffer.
17190
17191 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
17192
17193         * smiley-ems.el (smiley-update-cache):  Use `:ascent center'.
17194
17195 2000-09-21  Dave Love  <fx@gnu.org>
17196
17197         * smiley-ems.el (smiley-region): Test if display-graphic-p bound
17198         (for Emacs 20).  Tidy somewhat.
17199
17200 2000-09-21  Dave Love  <fx@gnu.org>
17201
17202         * gnus-ems.el (gnus-article-display-xface): Use unibyte for the
17203         image processing.  Rationalize logic somewhat.
17204
17205 2000-09-20  Dave Love  <fx@gnu.org>
17206
17207         * gnus-start.el (gnus-1) <gnus-simple-splash>: Don't test for X
17208         specifically.
17209
17210         * gnus.el (gnus-version-number): Avoid some redundant
17211         autoloads.
17212
17213 2000-09-20  Gerd Moellmann  <gerd@gnu.org>
17214
17215         * gnus-ems.el (gnus-article-display-xface): Don't convert PBM
17216         to XBM; we always have PBM support.
17217
17218 2000-09-14  Dave Love  <fx@gnu.org>
17219
17220         * gnus.el (gnus-charset):
17221         * mm-decode.el (mime-display):
17222         * imap.el (imap) <defgroup>: Add :version.
17223
17224 2000-09-13  Gerd Moellmann  <gerd@gnu.org>
17225
17226         * parse-time.el: Fix author's mail address.
17227
17228         * earcon.el, flow-fill.el, gnus-cite.el, gnus-gl.el, gnus-ml.el:
17229         * gnus-mlspl.el, gnus-nocem.el, gnus-range.el, gnus-salt.el:
17230         * gnus-setup.el, gnus-soup.el, gnus-undo.el, gnus-vm.el:
17231         * messcompat.el, nnbabyl.el, nndir.el, nneething.el:
17232         * nngateway.el, nnheaderxm.el, nnkiboze.el, nnlistserv.el:
17233         * nnmbox.el, nnmh.el, nnoo.el, nnsoup.el, nnspool.el, rfc2045.el:
17234         * rfc2231.el, uudecode.el: Fix copyright notice.
17235
17236         * nnweb.el (toplevel): To make the file bootstrap in Emacs,
17237         require `w3' at load-time only if not running in batch mode.
17238
17239 2000-12-19 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17240
17241         * gnus.el: Before merge with Emacs21.
17242
17243 2000-12-19  Raymond Scholz  <ray-2000@zonix.de>
17244
17245         * gnus-art.el (gnus-article-dumbquotes-map): Add EUR symbol.
17246
17247 2000-12-19  Per Abrahamsen  <abraham@dina.kvl.dk>
17248
17249         * mml.el (mml-mode-map): Change mml prefix from `M-m' to `C-c C-m'
17250         to avoid conflict with the standard `back-to-indentation'
17251         binding.
17252
17253 2000-12-17 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17254
17255         * mm-extern.el (mm-inline-external-body): g-a-m-h may be a handle.
17256
17257         * mm-util.el (mm-enable-multibyte-mule4): Test charsetp.
17258         (mm-disable-multibyte-mule4): Ditto.
17259         (mm-with-unibyte-current-buffer-mule4): Ditto.
17260
17261 2000-12-15 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17262
17263         * pop3.el (pop3-movemail): Use binary.
17264         (pop3-movemail-file-coding-system): Removed.
17265
17266 2000-12-14 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17267
17268         * mm-util.el (mm-charset-synonym-alist): Add cn-gb.
17269
17270 2000-12-13 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17271
17272         * nnspool.el (nnspool-lib-dir): Check whether /usr/lib/news/active
17273         exists.
17274
17275 2000-12-13 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17276
17277         * gnus-msg.el (gnus-post-method): Use backend name when the
17278         address is "".
17279
17280 2000-12-08 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17281
17282         * gnus-art.el (article-verify-x-pgp-sig): Don't test
17283         mm-verify-option.
17284         (gnus-treat-x-pgp-sig): Default value.
17285         (gnus-ignored-headers): Redundant.
17286
17287 2000-12-04 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17288
17289         * gnus-win.el (gnus-configure-frame): Save selected window.
17290
17291 2000-02-15  Andrew Innes  <andrewi@gnu.org>
17292
17293         * nnmbox.el: Require gnus-range.
17294         (nnmbox-group-building-active-articles): New variable.
17295         (nnmbox-group-active-articles): New variable; this is a cache of
17296         all active articles by group and number.
17297         (nnmbox-in-header-p): New function.
17298         (nnmbox-find-article): New function.
17299         (nnmbox-record-active-article): New function.
17300         (nnmbox-record-deleted-article): New function.
17301         (nnmbox-is-article-active-p): New function.
17302         (nnmbox-retrieve-headers): Use nnmbox-find-article.
17303         (nnmbox-request-article): Ditto.  Also supply extra arg to
17304         nnmbox-article-group-number.
17305         (nnmbox-request-expire-articles): Ditto.
17306         (nnmbox-request-move-article): Ditto.
17307         (nnmbox-request-replace-article): Ditto.
17308         (nnmbox-request-rename-group): Rename group entry in active
17309         article cache.
17310         (nnmbox-delete-mail): Update active article cache, unless article
17311         is being replaced.
17312         (nnmbox-possibly-change-newsgroup): Call nnmbox-read-mbox, rather
17313         than partially duplicating it.
17314         (nnmbox-article-group-number): Add extra `this-line' arg, to
17315         handle articles belonging to multiple groups.
17316         (nnmbox-save-mail): Update active article cache.
17317         (nnmbox-read-mbox): Build active article cache when loading mbox.
17318         Also do some repair work, if we find articles that are missing the
17319         appropriate X-Gnus-Newsgroup lines in the header.  We can usually
17320         reconstruct these from Xref info.
17321
17322 2000-12-04 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17323
17324         * mail-source.el (mail-source-report-new-mail): Use
17325         nnheader-run-at-time.
17326
17327 2000-02-15  Andrew Innes  <andrewi@gnu.org>
17328
17329         * mail-source.el (mail-source-fetch-pop): Clear pop password when
17330         an error is thrown, and then rethrow the error.
17331         (mail-source-check-pop): Ditto.
17332         (mail-source-start-idle-timer): Prevent multiple pop checks
17333         running if the check takes a long time.
17334
17335 2000-12-04 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17336
17337         * gnus-msg.el (gnus-msg-mail): COMPOSEFUNC should return t if
17338         succeed.
17339
17340 2000-12-04 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17341
17342         * gnus-win.el (gnus-configure-windows): Make sure
17343         nntp-server-buffer is live.
17344         (gnus-remove-some-windows): switch-to-buffer -> set-buffer.
17345
17346 2000-11-21  Stefan Monnier  <monnier@cs.yale.edu>
17347
17348         * gnus-win.el (gnus-configure-windows): switch-to-buffer -> set-buffer.
17349
17350 2000-12-04  Andreas Jaeger  <aj@suse.de>
17351
17352         * gnus-msg.el (gnus-summary-mail-forward): Fix typos in description.
17353
17354 2000-12-03 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17355
17356         * mml2015.el (mml2015-fix-micalg): Alg might be nil.
17357
17358 2000-12-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
17359         Trivial patch from Christopher Splinter  <chris@splinter.inka.de>
17360
17361         * gnus-sum.el (gnus-summary-limit-to-age): Fix typo.
17362
17363 2000-12-01  Simon Josefsson  <sj@extundo.com>
17364
17365         * mml-smime.el (mml-smime-verify): Fix address parsing.
17366
17367 2000-12-01  Simon Josefsson  <sj@extundo.com>
17368
17369         * mml-smime.el (mml-smime-verify): Don't modify MM buffer.  Handle
17370         more than one certificate inside PKCS#7 blob.  Better security
17371         information (clamed / actual sender, openssl output, certificates
17372         inside message).
17373
17374         * smime.el (smime-verify-region): Output to /dev/null.
17375         (smime-buffer-as-string-region): Don't parse empty lines.
17376
17377 2000-11-30 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17378
17379         * gnus-art.el (gnus-mime-security-button-line-format-alist): Add
17380         ?d and ?D.
17381         (gnus-mime-security-show-details-inline): New variable.
17382         (gnus-mime-security-show-details): Use them.
17383         (gnus-insert-mime-security-button): Ditto.
17384
17385         * mml2015.el (mml2015-gpg-verify): Set details when succeed.
17386         Suggest by Michael Duggan (md5i@cs.cmu.edu).
17387         (mml2015-gpg-clear-verify): Ditto.
17388         (mml2015-gpg-decrypt-1): Ditto.
17389         (mml2015-use): Prefer 'gpg.
17390
17391 2000-11-30 19:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17392
17393         * gnus-util.el (gnus-add-text-properties-when): New function.
17394         (gnus-remove-text-properties-when): Ditto.
17395
17396         * gnus-cite.el (gnus-article-hide-citation): Use them.
17397         (gnus-article-toggle-cited-text): Use them.
17398
17399         * gnus-art.el (gnus-signature-toggle): Use them.
17400         (gnus-article-show-hidden-text): Ditto.
17401         (gnus-article-hide-text): Ditto.
17402
17403 2000-11-30 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17404
17405         * mm-util.el (mm-find-charset-region): Remove eight-bit-*.
17406
17407 2000-11-30  Simon Josefsson  <sj@extundo.com>
17408
17409         * smime.el (smime-point-at-eol): New alias.
17410         (smime-buffer-as-string-region): Use it.
17411
17412 2000-11-29 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17413
17414         * nndraft.el (nndraft-request-restore-buffer): Remove Date field.
17415
17416 2000-11-29 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17417
17418         * nnfolder.el (nnfolder-request-expire-articles): expiry-target.
17419
17420         * nnbabyl.el (nnbabyl-request-expire-articles): Ditto.
17421
17422         * nnmbox.el (nnmbox-request-expire-articles): Ditto.
17423
17424 2000-11-22  Jan Nieuwenhuizen  <janneke@gnu.org>
17425
17426         * nnmh.el (nnmh-request-expire-articles): Implemented
17427         expiry-target for nnmh backend.
17428
17429 2000-11-30  Simon Josefsson  <sj@extundo.com>
17430
17431         * mm-decode.el (mm-security-from): New variable.
17432         (mm-possibly-verify-or-decrypt): Use it rather than `from'.
17433
17434         * mml-smime.el (mml-smime-verify): Use `mm-security-from' rather
17435         than `from'.
17436
17437 2000-11-30  Simon Josefsson  <sj@extundo.com>
17438
17439         * mml-smime.el (mml-smime-verify): Verify that certificate mail
17440         address match sender address.
17441
17442         * mm-decode.el (mm-possibly-verify-or-decrypt): Bind sender address.
17443
17444         * smime.el (smime-verify-region): Don't copy buffer.
17445         (smime-decrypt-buffer): Use expand-file-name on keyfile.
17446         (smime-pkcs7-region): New function.
17447         (smime-pkcs7-certificates-region): Ditto.
17448         (smime-pkcs7-email-region): Ditto.
17449         (smime-buffer-as-string-region): Ditto.
17450
17451         * gnus-art.el (gnus-mime-security-show-details): Goto beginning of
17452         buffer.
17453
17454 2000-11-23  Jens Krinke  <j.krinke@gmx.de>
17455
17456         * smime.el (smime-decrypt-region): Fix keyfile argument.
17457
17458 2000-11-29 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17459
17460         * nnmail.el (nnmail-cache-accepted-message-ids): Add doc.
17461
17462 2000-11-28 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17463
17464         * message.el (message-shoot-gnksa-feet): New variable.
17465         (message-gnksa-enable-p): New function.
17466         (message-send): Use it.
17467         (message-check-news-body-syntax): Ditto.
17468
17469 2000-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17470
17471         * message.el (message-make-message-id): Remove the redundancy.
17472
17473 2000-11-22 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17474
17475         * message.el (message-setup): Discourage using mc-install-*-mode.
17476
17477         * gnus-setup.el (gnus-use-mailcrypt): Don't hook mail-crypt.
17478
17479 2000-11-22 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17480
17481         * gnus-cite.el (gnus-cite-parse): Guess citation length.
17482
17483 2000-11-22 14:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17484
17485         * gnus-ml.el (gnus-mailing-list-insinuate): New function.
17486
17487 2000-11-22 13:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17488
17489         * gnus-ml.el (gnus-mailing-list-archive): Find the real url.
17490
17491 2000-11-22 11:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17492
17493         * gnus-xmas.el (gnus-xmas-article-display-xface): Use
17494         insert-buffer-substring.
17495
17496         * message.el (message-send-mail): Use buffer-substring-no-properties.
17497         (message-send-news): Ditto.
17498
17499 2000-11-22  David Edmondson  <dme@dme.org>
17500
17501         * imap.el (imap-wait-for-tag): Message read info.
17502
17503 2000-11-21 20:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17504
17505         * mml2015.el (mml2015-mailcrypt-encrypt): Ensure the part is encrypted.
17506         (mml2015-mailcrypt-encrypt): Use unibyte-buffer.
17507         (mml2015-gpg-encrypt): Ditto.
17508
17509 2000-11-21 09:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17510
17511         * mm-decode.el (mm-verify-option): Default value.
17512
17513         * mml-sec.el (mml-secure-part): Error message.
17514
17515 2000-11-20 18:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17516
17517         * gnus-ml.el (gnus-mailing-list-archive): Use browse-url.
17518
17519 2000-11-20 17:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17520
17521         * gnus-art.el (gnus-article-make-menu-bar): Use easy-menu-add.
17522
17523 2000-11-20 16:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17524
17525         * gnus-art.el (gnus-article-describe-key): Use prompt.
17526         (gnus-article-describe-key-briefly): Ditto.
17527
17528 2000-11-20 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17529
17530         * gnus-agent.el (gnus-agent-expire): Ignore corrupted history.
17531
17532 2000-11-20 10:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17533
17534         * gnus-art.el (gnus-article-describe-key): New function.
17535         (gnus-article-describe-key-briefly): New function.
17536
17537 2000-11-19 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17538
17539         * mm-decode.el (mm-decrypt-option): Doc typo.
17540
17541         * gnus-art.el (gnus-article-read-summary-keys): lookup-key may
17542         return a number.
17543
17544 2000-11-19 21:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17545
17546         * message.el (message-newline-and-reformat): Typo.
17547
17548 2000-11-19 12:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17549
17550         * gnus-art.el (article-verify-x-pgp-sig): Check whether
17551         original-article-buffer exists.
17552
17553         * rfc2047.el (rfc2047-q-encoding-alist): Match Resent-.
17554         (rfc2047-header-encoding-alist): Addresses are different from text.
17555         (rfc2047-encode-message-header): Ditto.
17556         (rfc2047-dissect-region): Extra parameter.
17557         (rfc2047-encode-region): Ditto.
17558         (rfc2047-encode-string): Ditto.
17559
17560 2000-11-19 00:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17561
17562         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): New function.
17563         (mm-uu-pgp-encrypted-extract): Use it.
17564         (mm-uu-pgp-signed-extract-1): New function.
17565         (mm-uu-pgp-signed-extract): Use it.
17566
17567         * gnus-art.el (gnus-mime-display-security): New function.
17568         (gnus-mime-display-part): Use it.
17569         (gnus-mime-security-verify-or-decrypt): New function.
17570         (gnus-mime-security-press-button): New function.
17571         (gnus-insert-mime-security-button): Use it.
17572
17573         * mm-decode.el (mm-possibly-verify-or-decrypt): Use mm-h-m-c-p.
17574         (mm-find-raw-part-by-type): Ditto.
17575         (mm-verify-function-alist): Add x-gnus-pgp-signature handle.
17576         (mm-decrypt-function-alist): Add x-gnus-pgp-encrypted handle.
17577         (mm-destroy-parts): Kill nested multibyte buffer.
17578
17579         * mml2015.el (mml2015-mailcrypt-verify): Use mm-h-m-c-p.
17580         (mml2015-gpg-verify): Ditto.
17581
17582 2000-11-18  Simon Josefsson  <sj@extundo.com>
17583
17584         * mml2015.el (mml2015-mailcrypt-clear-verify): New function.
17585         (mml2015-function-alist): Use it.
17586
17587         * mml-sec.el (mml-sign-alist): Update names.
17588         (mml-encrypt-alist): Ditto.
17589         (mml-secure-part-smime-sign): Moved to mml-smime.el
17590         as `mml-smime-sign-query'.
17591         (mml-secure-part-smime-encrypt-by-file): Moved to mml-smime.el as
17592         `mml-smime-get-file-cert'.
17593         (mml-secure-part-smime-encrypt-by-dns): Moved to mml-smime.el as
17594         `mml-smime-get-dns-cert'.
17595         (mml-secure-part-smime-encrypt): Moved to mml-smime.el as
17596         `mml-smime-encrypt-query'.
17597         (mml-smime-sign-buffer): Use mml-smime-sign.
17598         (mml-smime-encrypt-buffer): Use mml-smime-encrypt.
17599
17600         * mml-smime.el (mml-smime-sign): New function.
17601         (mml-smime-encrypt):
17602         (mml-smime-sign-query):
17603         (mml-smime-get-file-cert):
17604         (mml-smime-get-dns-cert):
17605         (mml-smime-encrypt-query): Moved from mml-sec.el.
17606
17607 2000-11-16  Simon Josefsson  <sj@extundo.com>
17608
17609         * mml2015.el (mml2015-gpg-clear-verify): New function.
17610         (mml2015-function-alist): Add it.
17611
17612 2000-11-17 14:21  ShengHuo ZHU  <zsh@cs.rochester.edu>
17613
17614         * message.el (message-setup-fill-variables): Use
17615         message-cite-prefix-regexp.
17616         (message-newline-and-reformat): Check the end of citation, leading
17617         WSP, break in the cite prefix.
17618         (message-fill-paragraph): New function.
17619
17620 2000-11-17 13:44  ShengHuo ZHU  <zsh@cs.rochester.edu>
17621
17622         * lpath.el: Shut up.
17623
17624 2000-11-17  Per Abrahamsen  <abraham@dina.kvl.dk>
17625
17626         * gnus-msg.el (gnus-group-posting-charset-alist): No longer allow
17627         raw 8-bit in headers in dk.* newsgroups.
17628
17629 2000-11-17 08:02  ShengHuo ZHU  <zsh@cs.rochester.edu>
17630
17631         * message.el (message-newline-and-reformat): Match extra WSPs.
17632
17633 2000-11-16 23:31  ShengHuo ZHU  <zsh@cs.rochester.edu>
17634
17635         * mml.el (mml-generate-mime-1): Ignore ascii.
17636
17637 2000-11-16 Justin Sheehy  <justin@iago.org>
17638
17639         * gnus-sum.el (gnus-summary-make-menu-bar): Fix menu items.
17640
17641 2000-11-16 17:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
17642
17643         * message.el (message-cite-prefix-regexp): Prefix should not end
17644         at space.
17645
17646 2000-11-15 18:09  ShengHuo ZHU  <zsh@cs.rochester.edu>
17647
17648         * message.el (message-mode-syntax-table): Add - as a word
17649         constituent as in articles.
17650         (message-setup-fill-variables): Add -_. as supercite-style prefix.
17651         * gnus-art.el (gnus-article-mode-syntax-table): Remove ?-.
17652         * gnus-cite.el (gnus-cite-parse): Match from the beginning of line.
17653
17654 2000-11-15 13:21  ShengHuo ZHU  <zsh@cs.rochester.edu>
17655
17656         * gnus-msg.el (gnus-inews-do-gcc): Expire the article.
17657
17658 2000-11-12  David Edmondson  <dme@dme.org>
17659
17660         * message.el (message-font-lock-keywords): use
17661         message-cite-prefix-regexp.
17662
17663 2000-11-15  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
17664
17665         * gnus-group.el (gnus-group-jump-to-group-prompt): New variable by
17666         Stein Arild Str\e,Ax\e(Bmme.
17667         (gnus-group-jump-to-group): Use it.
17668         (gnus-group-jump-to-group-prompt): Customize.
17669
17670 2000-11-14 10:32:42  ShengHuo ZHU  <zsh@cs.rochester.edu>
17671
17672         * mailcap.el (mailcap-possible-viewers): Match the entire string.
17673
17674 2000-11-14 10:20:56  ShengHuo ZHU  <zsh@cs.rochester.edu>
17675
17676         * mml2015.el (mml2015-mailcrypt-verify): replace-match is
17677         incompatible.
17678         (mml2015-mailcrypt-sign): Ditto.
17679
17680 2000-11-14 10:12:05  ShengHuo ZHU  <zsh@cs.rochester.edu>
17681
17682         * gnus-msg.el (gnus-inews-do-gcc): Update summary data when the
17683         group is open.
17684
17685 2000-11-14 00:48:52  ShengHuo ZHU  <zsh@cs.rochester.edu>
17686
17687         * gnus-bcklg.el (gnus-backlog-enter-article): Don't enter
17688         nnvirtual articles.
17689         (gnus-backlog-request-article): Don't request nnvirtual articles.
17690
17691 2000-11-13 22:08:09  ShengHuo ZHU  <zsh@cs.rochester.edu>
17692
17693         * mml2015.el (mml2015-mailcrypt-sign): Remove "-" escape.
17694         * mml.el (mml-generate-mime-1): Save cont. skip multipart attributes.
17695
17696 2000-11-13 20:43:37  ShengHuo ZHU  <zsh@cs.rochester.edu>
17697
17698         * mm-decode.el (mm-get-part): Don't call mm-insert-part.
17699         * mml.el (mml-generate-mime-1): Use charset attribute.
17700         * mm-bodies.el (mm-encode-body): Add parameter charset.
17701         * mm-util.el (mm-mime-charset): Show error when find 8-bit characters.
17702
17703 2000-11-13 16:09:09  ShengHuo ZHU  <zsh@cs.rochester.edu>
17704
17705         * mml2015.el (mml2015-mailcrypt-decrypt): Handle quit.
17706         (mml2015-mailcrypt-clear-decrypt): Ditto.
17707         (mml2015-mailcrypt-verify): Ditto.
17708         (mml2015-mailcrypt-clear-verify): Ditto.
17709         (mml2015-gpg-verify): Ditto.
17710
17711 2000-11-13 15:29:58  ShengHuo ZHU  <zsh@cs.rochester.edu>
17712
17713         * smime.el (smime-openssl-program): Test the existence of openssl.
17714         * mml-smime.el: Require mm-decode.
17715         (mml-smime-verify-test): New function.
17716         * mm-decode.el (mm-verify-function-alist): Use it.
17717
17718 2000-11-13 09:50:29  ShengHuo ZHU  <zsh@cs.rochester.edu>
17719
17720         * gnus-sum.el (gnus-summary-repair-multipart): Fix Mime-Version
17721         anyway.
17722
17723 2000-11-13  Simon Josefsson  <sj@extundo.com>
17724
17725         * mm-uu.el (mm-uu-pgp-signed-extract): Explain why clear
17726         verification doesn't work.
17727
17728 2000-11-12 23:36:45  ShengHuo ZHU  <zsh@cs.rochester.edu>
17729
17730         * gnus-msg.el (gnus-inews-mark-gcc-as-read): New variable.
17731         (gnus-inews-do-gcc): Use it.
17732
17733 2000-11-12 21:35:04  ShengHuo ZHU  <zsh@cs.rochester.edu>
17734
17735         * rfc2231.el (rfc2231-encode-string): Insert semi-colon and
17736         leading space.
17737         * mm-extern.el (mm-inline-external-body): Report error when no
17738         access-type.
17739
17740 2000-11-12 19:48:30  ShengHuo ZHU  <zsh@cs.rochester.edu>
17741
17742         * gnus-sum.el (gnus-select-newsgroup): Change the error message.
17743
17744 2000-11-12 11:53:18  ShengHuo ZHU  <zsh@cs.rochester.edu>
17745
17746         * gnus-art.el (gnus-mime-button-menu): Use select-window.
17747
17748 2000-11-12 09:47:54  ShengHuo ZHU  <zsh@cs.rochester.edu>
17749
17750         * gnus-art.el (gnus-mime-display-part): Display multipart/related
17751         as multipart/mixed.
17752
17753 2000-11-12  David Edmondson  <dme@dme.org>
17754
17755         * message.el (message-cite-prefix-regexp): moved from gnus-cite.el
17756         and replace `.' with `\w' to allow for different syntax tables
17757         (from Vladimir Volovich).
17758         * message.el (message-newline-and-reformat): use
17759         `message-cite-prefix-regexp'.
17760         * gnus-cite.el (gnus-supercite-regexp): use
17761         `message-cite-prefix-regexp'.
17762         * gnus-cite.el (gnus-cite-parse): use
17763         `message-cite-prefix-regexp'.
17764
17765 2000-11-12 08:52:46  ShengHuo ZHU  <zsh@cs.rochester.edu>
17766
17767         * mml2015.el (mml2015-mailcrypt-verify): Replace armors with
17768         PGP SIGNATURE.  Escape leading "-"'s.
17769         (mml2015-mailcrypt-sign): Replace armors with PGP MESSAGE.
17770
17771 2000-11-11 15:55:35  ShengHuo ZHU  <zsh@cs.rochester.edu>
17772
17773         * mm-uu.el (mm-uu-type-alist): Stricter shar regexp.
17774
17775 2000-11-11  Simon Josefsson  <sj@extundo.com>
17776
17777         * mml2015.el (mml2015-gpg-verify): Set "OK" security status.
17778
17779         * smime.el (smime-details-buffer): New variable.
17780         (smime-sign-region):
17781         (smime-encrypt-region):
17782         (smime-verify-region):
17783         (smime-decrypt-region): Copy OpenSSL output to the buffer.
17784
17785         * mml-smime.el (mml-smime-verify): Support security info.
17786
17787 2000-11-10 17:11:22  ShengHuo ZHU  <zsh@cs.rochester.edu>
17788
17789         * mm-decode.el (mm-verify-option): Set default to nil.
17790         (mm-decrypt-option): Ditto.
17791         * gnus-art.el (article-verify-x-pgp-sig): New function.
17792
17793 2000-11-10 09:01:25  ShengHuo ZHU  <zsh@cs.rochester.edu>
17794
17795         * gnus-art.el (gnus-mime-display-alternative): Show button if no
17796         preferred part.
17797
17798 2000-11-07  Kai Gro\e,b_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
17799
17800         * gnus-sum.el (gnus-move-split-methods): Say that
17801         `gnus-split-methods' uses file names, whereas this uses group
17802         names.  (Report from Nevin Kapur)
17803
17804 2000-11-10 01:23:20  ShengHuo ZHU  <zsh@cs.rochester.edu>
17805
17806         * mm-partial.el (mm-inline-partial): Insert MIME-Version.
17807
17808 2000-11-09 17:02:50  ShengHuo ZHU  <zsh@cs.rochester.edu>
17809
17810         * nnheader.el (nnheader-directory-files-is-safe): New variable.
17811         (nnheader-directory-articles): Use it.
17812         (nnheader-article-to-file-alist): Ditto.
17813
17814 2000-11-09 16:20:37  ShengHuo ZHU  <zsh@cs.rochester.edu>
17815
17816         * rfc2047.el (rfc2047-pad-base64): New function.
17817         (rfc2047-decode): Use it.
17818
17819 2000-11-09 08:53:04  ShengHuo ZHU  <zsh@cs.rochester.edu>
17820
17821         * gnus-srvr.el (gnus-browse-foreign-server): Bind the original
17822         select method.
17823
17824 2000-11-08 19:58:58  ShengHuo ZHU  <zsh@cs.rochester.edu>
17825
17826         * mml2015.el (mml2015-gpg-decrypt-1):
17827         (mml2015-gpg-verify): buffer-string has no argument in Emacs.
17828
17829 2000-11-08 16:37:02  ShengHuo ZHU  <zsh@cs.rochester.edu>
17830
17831         * gnus-cache.el (gnus-cache-generate-nov-databases): Reopen cache.
17832
17833 2000-11-08 08:38:30  ShengHuo ZHU  <zsh@cs.rochester.edu>
17834
17835         * pop3.el (pop3-munge-message-separator): A message may have an
17836         empty body.
17837
17838 2000-11-07 18:02:26  ShengHuo ZHU  <zsh@cs.rochester.edu>
17839
17840         * mm-uu.el (mm-uu-type-alist): Don't test pgp stuff.
17841         (mm-uu-pgp-encrypted-extract): Clean mml2015 buffer.
17842         (mm-uu-pgp-signed-extract): Use coding-system.
17843
17844 2000-11-07 14:33:19  ShengHuo ZHU  <zsh@cs.rochester.edu>
17845
17846         * gnus-art.el (gnus-mime-display-part): Show MIME security button.
17847         (gnus-insert-mime-security-button): New function.
17848         * mm-decode.el (mm-possibly-verify-or-decrypt): Add security info.
17849         * mml2015.el:  Add security info when verify or decrypt.
17850         * mm-uu.el (mm-uu-pgp-signed-extract): Use multipart.
17851         (mm-uu-pgp-encrypted-extract): Ditto.
17852
17853 2000-11-07 08:49:36  ShengHuo ZHU  <zsh@cs.rochester.edu>
17854
17855         * mm-decode.el (mm-display-parts): New function.
17856         * gnus-art.el (gnus-mime-view-all-parts): Use it. Remove parts first.
17857
17858 2000-02-02  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
17859
17860         * gnus-mlspl.el: Documentation tweaks.
17861
17862 2000-11-06 22:06:44  ShengHuo ZHU  <zsh@cs.rochester.edu>
17863
17864         * mm-decode.el (mm-possibly-verify-or-decrypt): Fix.
17865         * gnus-art.el (gnus-article-encrypt-body): Rename and support prefix
17866         argument.
17867
17868 2000-11-06 19:10:14  ShengHuo ZHU  <zsh@cs.rochester.edu>
17869
17870         * rfc2231.el (rfc2231-encode-string): Use us-ascii if charset is nil.
17871
17872 2000-11-06 18:17:53  ShengHuo ZHU  <zsh@cs.rochester.edu>
17873
17874         * gnus-art.el (gnus-article-encrypt): New function.
17875         (gnus-article-encrypt-protocol-alist): New variable.
17876         (gnus-article-encrypt-protocol): New variable.
17877         * mml2015.el (mml2015-self-encrypt): New function.
17878         (mml2015-mailcrypt-encrypt): Set mc-pgp-always-sign.
17879
17880 2000-11-06 16:02:52  ShengHuo ZHU  <zsh@cs.rochester.edu>
17881
17882         * mm-uu.el (mm-uu-gpg-key-skip-to-last): New function.
17883         (mm-uu-pgp-key-extract): Use application/pgp-keys, don't snarf,
17884         let mailcap do it.
17885         * mml2015.el: Remove snarf code.
17886         * mm-decode.el: Remove snarf code.
17887
17888 2000-11-06 14:03:10  ShengHuo ZHU  <zsh@cs.rochester.edu>
17889
17890         * mml.el (mml-insert-mml-markup): Ignore internal stuff.
17891         (mml-insert-mime): Understand gnus-decoded.
17892         (mime-to-mml): New parameter handles.
17893         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
17894         * gnus-sum.el (gnus-summary-edit-article): Add argument `3'.
17895
17896 2000-11-06 13:51:37  ShengHuo ZHU  <zsh@cs.rochester.edu>
17897
17898         * mm-decode.el (mime-security): New group.
17899         (mm-verify-function-alist): Add test function.
17900         (mm-decrypt-function-alist): Ditto.
17901         (mm-snarf-option): Set default value as nil.
17902         (mm-find-part-by-type): Recursive parameter.
17903         (mm-possibly-verify-or-decrypt): Support draft-ietf-openpgp-multsig.
17904         * mml2015.el: Support draft-ietf-openpgp-multsig.
17905
17906 2000-11-06 13:01:27  ShengHuo ZHU  <zsh@cs.rochester.edu>
17907
17908         * gnus-art.el (gnus-mime-view-part-as-charset): New function.
17909         (gnus-article-view-part-as-charset): New function.
17910
17911 2000-11-05 22:34:07  ShengHuo ZHU  <zsh@cs.rochester.edu>
17912
17913         * mm-decode.el (mm-verify-option): Default value.
17914         (mm-possibly-verify-or-decrypt): Dealing with broken messages.
17915
17916 2000-11-05 15:06:05  ShengHuo ZHU  <zsh@cs.rochester.edu>
17917
17918         * nnvirtual.el (nnvirtual-request-expire-articles): Uncompress range.
17919
17920 2000-11-05  Simon Josefsson  <sj@extundo.com>
17921
17922         * mml-smime.el (mml-smime-verify): Work in original multipart
17923         buffert.
17924
17925         * mm-decode.el (mm-handle-multipart-original-buffer): New macro.
17926         (mm-handle-multipart-ctl-parameter): Ditto.
17927         (mm-alist-to-plist): New function.
17928         (mm-dissect-buffer): Store CTL parameters and copy original buffer
17929         for multiparts.
17930         (mm-destroy-parts): Destroy multipart buffert.
17931         (mm-remove-part): Ditto.
17932
17933         * mml-smime.el (mml-smime-sign): Not used.
17934         (mml-smime-encrypt): Ditto.
17935
17936         * mm-decode.el (mml-smime-verify): Autoload mml-smime.
17937
17938         Verify S/MIME signature support.
17939
17940         * mm-decode.el (mm-inline-media-tests): Add
17941         application/{x-,}pkcs7-signature.
17942         (mm-inlined-types): Ditto.
17943         (mm-automatic-display): Ditto.
17944         (mm-verify-function-alist): Ditto.  Add name of method.
17945         (mm-decrypt-function-alist): Add name of method.
17946         (mm-find-part-by-type): Add documentation.
17947         (mm-possibly-verify-or-decrypt): Use new format of
17948         mm-{verify,decrypt}-function-alist.  Use method names.
17949
17950         * mml-smime.el (mml-smime-verify): New function.
17951
17952 2000-11-04 20:38:50  ShengHuo ZHU  <zsh@cs.rochester.edu>
17953
17954         * mm-view.el (mm-inline-text): Move point to the end of inserted text.
17955
17956 2000-11-04 19:07:08  ShengHuo ZHU  <zsh@cs.rochester.edu>
17957
17958         * mml2015.el (mml2015-function-alist): Clear verify and decrypt.
17959         * mm-uu.el: Reorganized.  Add gnatsweb, pgp-signed, pgp-encrypted.
17960         * mm-decode.el (mm-snarf-option): New variable.
17961
17962 2000-11-04 13:08:02  ShengHuo ZHU  <zsh@cs.rochester.edu>
17963
17964         * mm-util.el (mm-subst-char-in-string): New function.
17965         (mm-replace-chars-in-string): Use it.
17966         * message.el (message-replace-chars-in-string): Use it.
17967         * nnheader.el (nnheader-replace-chars-in-string): Use it.
17968         * gnus-mh.el (mh-lib-progs): Shut up.
17969
17970 2000-11-04  ShengHuo Zhu  <zsh@cs.rochester.edu>
17971
17972         * base64.el, md5.el: Moved to contrib directory.
17973
17974 2000-11-04 11:13:56  ShengHuo ZHU  <zsh@cs.rochester.edu>
17975
17976         * gnus-sum.el (gnus-summary-search-article-forward): Don't move
17977         the last article when search.
17978
17979 2000-11-04 10:34:29  ShengHuo ZHU  <zsh@cs.rochester.edu>
17980
17981         * nnheader.el (nnheader-pathname-coding-system): Default iso-8859-1.
17982         * nnmail.el (nnmail-pathname-coding-system): Ditto.
17983
17984 2000-09-29  David Edmondson  <dme@thus.net>
17985
17986         * message.el (message-newline-and-reformat): Typo.
17987
17988 2000-11-04 10:11:05  ShengHuo ZHU  <zsh@cs.rochester.edu>
17989
17990         * rfc2231.el (rfc2231-decode-encoded-string): Test mm-multibyte-p.
17991
17992 2000-11-04 09:53:42  ShengHuo ZHU  <zsh@cs.rochester.edu>
17993
17994         * nntp.el (nntp-decode-text): Delete bogus status lines.
17995
17996 2000-11-03  Stefan Monnier  <monnier@cs.yale.edu>
17997
17998         * message.el (message-font-lock-keywords): Match a final newline
17999         to help font-lock's multiline support.
18000
18001 2000-11-04 09:11:44  ShengHuo ZHU  <zsh@cs.rochester.edu>
18002
18003         * nnoo.el (nnoo-set): New function.
18004
18005 2000-11-04  ShengHuo Zhu  <zsh@cs.rochester.edu>
18006
18007         * gpg.el, gpg-ring.el: Moved to contrib directory.
18008
18009 2000-11-04  Simon Josefsson  <sj@extundo.com>
18010
18011         * nnimap.el (nnimap-split-inbox): Typo.
18012
18013 2000-11-03 10:46:44  ShengHuo ZHU  <zsh@cs.rochester.edu>
18014
18015         * gnus-msg.el (gnus-msg-mail): Move it backwards.
18016
18017 2000-11-03  Simon Josefsson  <sj@extundo.com>
18018
18019         * rfc2231.el (rfc2231-parse-qp-string): New function.
18020         (require): rfc2047.
18021
18022         * mail-parse.el (mail-header-parse-content-type):
18023         (mail-header-parse-content-disposition): Support invalid QP
18024         encoded strings, by using `rfc2231-parse-qp-string'.
18025
18026 2000-11-03 08:58:08  ShengHuo ZHU  <zsh@cs.rochester.edu>
18027
18028         * rfc2231.el (rfc2231-parse-string): Decode when there is no number.
18029         (rfc2231-decode-encoded-string): Typo "> X 1".
18030         (rfc2231-encode-string): Insert the name of charset.
18031         * mail-parse.el (mail-header-encode-parameter): Use RFC2231.
18032
18033 2000-11-02 23:35:50  ShengHuo ZHU  <zsh@cs.rochester.edu>
18034
18035         * mm-decode.el (mm-save-part): Return the filename.
18036         * gnus-sum.el (gnus-summary-edit-article): Remove a hack.
18037         * gnus-art.el (gnus-mime-save-part-and-strip): New function.
18038         (gnus-mime-action-alist): Use it.
18039         (gnus-mime-button-commands): Use it.
18040         * mm-extern.el (mm-extern-local-file): Error when the file is gone.
18041         (mm-inline-external-body): unwind-protect.
18042
18043 2000-11-02 21:08:49  ShengHuo ZHU  <zsh@cs.rochester.edu>
18044
18045         * gnus-art.el (gnus-insert-mime-button): Show url.
18046
18047 2000-11-02 19:51:19  ShengHuo ZHU  <zsh@cs.rochester.edu>
18048
18049         * mml.el (mml-generate-mime-1): Support external url.
18050         * nnwarchive.el (nnwarchive-mail-archive-article): Use external url.
18051
18052 2000-11-02 16:53:32  ShengHuo ZHU  <zsh@cs.rochester.edu>
18053
18054         * mm-partial.el (mm-inline-partial): Buffer name with a leading space.
18055         * mm-decode.el (mm-display-external): Ditto.
18056         * mm-extern.el: New file.
18057         * mm-decode.el (mm-inline-media-tests): Hook it up.
18058         (mm-inlined-types): Inline message/external-body.
18059
18060 2000-11-02  Simon Josefsson  <sj@extundo.com>
18061
18062         * gnus-art.el (gnus-visible-headers): Add Mail-Followup-To.
18063
18064         * message.el (message-get-reply-headers): Better handling when
18065         Mail-Followup-To is very large.
18066
18067 2000-11-02 13:27:56  ShengHuo ZHU  <zsh@cs.rochester.edu>
18068
18069         * gnus-uu.el (gnus-uu-post-news): Comment out the redundancy.
18070         * gnus-art.el (gnus-article-edit-done):
18071         * gnus-sum.el (gnus-summary-edit-article-done): Move line
18072         counting code here.
18073         * gnus-msg.el (gnus-setup-message): Remove a hack.
18074
18075 2000-11-02 09:33:01  ShengHuo ZHU  <zsh@cs.rochester.edu>
18076
18077         * gnus-sum.el (gnus-newsgroup-variables): New variable.
18078         (gnus-summary-mode): Make them local variables.
18079         (gnus-set-global-variables): Globalize them.
18080         (gnus-summary-exit): Kill them.
18081
18082 2000-11-02  Hrvoje Niksic  <hniksic@arsdigita.com>
18083
18084         * rfc2047.el (rfc2047-encoded-word-regexp): Allow empty encoded
18085         word.
18086
18087 2000-11-01 10:07:13  ShengHuo ZHU  <zsh@cs.rochester.edu>
18088
18089         * gnus-art.el (gnus-mime-display-part): Add to signed or encrypted.
18090         gnus-article-wash-types.
18091         * gnus-art.el (gnus-article-wash-status): Use them.
18092
18093 2000-11-01 08:54:11  ShengHuo ZHU  <zsh@cs.rochester.edu>
18094
18095         * mml.el (mml-read-tag): Remove spaces and LF.
18096
18097 2000-11-01 08:01:03  ShengHuo ZHU  <zsh@cs.rochester.edu>
18098
18099         * mml2015.el (mml2015-mailcrypt-encrypt): Use from and sign parameters.
18100         * mml.el (mml-generate-mime-1): Add sender and recipients attributes.
18101
18102 2000-11-01 07:39:24  ShengHuo ZHU  <zsh@cs.rochester.edu>
18103
18104         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): New function.
18105
18106 2000-10-31 22:06:13  ShengHuo ZHU  <zsh@cs.rochester.edu>
18107
18108         * gnus-sum.el (gnus-article-charset): New variable.
18109         (gnus-summary-display-article): Set it.
18110         * gnus-msg.el (gnus-copy-article-buffer): Use it.
18111         * gnus-art.el (gnus-article-mode): Make it local variable.
18112
18113 2000-11-01 01:12:29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18114
18115         * nnultimate.el (nnultimate-create-mapping): Use nreverse.
18116
18117 2000-10-31 23:45:31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18118
18119         * nnwfm.el: New file.
18120
18121         * nnweb.el (nnweb-replace-in-string): New function.
18122
18123 2000-10-31 17:32:02  ShengHuo ZHU  <zsh@cs.rochester.edu>
18124
18125         * mml2015.el: Wrap gpg.el.
18126         * gpg.el (gpg-verify): The last argument of apply is a list.
18127         (gpg-encrypt): Add passphrase as a parameter.
18128
18129 2000-10-31 17:28:45  ShengHuo ZHU  <zsh@cs.rochester.edu>
18130
18131         * gpg.el: New file.
18132         * gpg-ring.el: New file.
18133
18134 2000-10-31 11:44:29  ShengHuo ZHU  <zsh@cs.rochester.edu>
18135
18136         * gnus-sum.el (gnus-summary-show-article): Fix the summary line.
18137
18138 2000-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
18139
18140         * gnus-sum.el (gnus-summary-insert-line): Work with quoted
18141         double-quote characters.
18142         (gnus-summary-prepare-threads): Ditto.
18143
18144 2000-10-31 08:36:03  ShengHuo ZHU  <zsh@cs.rochester.edu>
18145
18146         * gnus-art.el (gnus-mime-display-single): Forward line -1.
18147         * mml.el (mml-read-tag): Don't skip the leading space.
18148         * lpath.el (font-lock-set-defaults): Shut up.
18149
18150 2000-10-31 00:04:35  ShengHuo ZHU  <zsh@cs.rochester.edu>
18151
18152         * mml2015.el: Fix doc. Remove bogus mml2015-setup.
18153
18154 2000-10-30 23:37:07  ShengHuo ZHU  <zsh@cs.rochester.edu>
18155
18156         * qp.el (quoted-printable-encode-region): Replace leading - when
18157         ultra safe.
18158         * mml.el (mml-generate-mime-postprocess-function): Removed.
18159         (mml-postprocess-alist): Removed.
18160         (mml-generate-mime-1): Use ultra-safe when sign.
18161         * mml2015.el (mml2015-fix-micalg): Uppercase.
18162         (mml2015-verify): Insert LF.
18163         (mml2015-mailcrypt-sign): Downcase; search backward.
18164
18165 2000-10-16 11:36:52  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18166
18167         * nnultimate.el (nnultimate-forum-table-p): Be a bit more
18168         restrictive.
18169         (nnultimate-table-regexp): New variable.
18170         (nnultimate-forum-table-p): Use it.
18171
18172 2000-10-30  Ed L Cashin  <ecashin@coe.uga.edu>
18173         Trivial patch.
18174
18175         * gnus-sum.el (gnus-summary-expire-articles): Save point.
18176
18177 2000-10-30 08:52:50  ShengHuo ZHU  <zsh@cs.rochester.edu>
18178
18179         * mml-sec.el (mml-pgpmime-sign-buffer): Use mml2015-sign.
18180         (mml-pgpmime-encrypt-buffer): Use mml2015-encrypt.
18181
18182 2000-10-30 08:38:12  ShengHuo ZHU  <zsh@cs.rochester.edu>
18183
18184         * mml2015.el: Shut up.
18185
18186 2000-10-30 08:17:46  ShengHuo ZHU  <zsh@cs.rochester.edu>
18187
18188         * gnus.el (gnus-server-browse-hashtb): Removed.
18189         * gnus-group.el (gnus-group-prepare-flat-list-dead): Use gnus-active.
18190         (gnus-group-insert-group-line-info): Use simplified method.
18191         * gnus-srvr.el (gnus-browse-foreign-server): Use gnus-set-active.
18192
18193 2000-10-30 01:52:40  ShengHuo ZHU  <zsh@cs.rochester.edu>
18194
18195         * gnus-util.el (gnus-union): Renamed from gnus-agent-union, and
18196         moved here.
18197         * gnus-agent.el (gnus-agent-fetch-headers): Use it.
18198         * gnus-group.el (gnus-group-prepare-flat): Use it.
18199         * gnus-topic.el (gnus-group-prepare-topics): Use it.
18200
18201 2000-10-30 01:23:49  ShengHuo ZHU  <zsh@cs.rochester.edu>
18202
18203         * mml.el (mml-mode): Show menu in XEmacs.
18204
18205 2000-10-30 00:49:33  ShengHuo ZHU  <zsh@cs.rochester.edu>
18206
18207         * gnus-srvr.el (gnus-server-browse-in-group-buffer): New variable.
18208         (gnus-server-read-server-in-server-buffer): New function.
18209         (gnus-browse-foreign-server): Browse in group buffer.
18210         * gnus-group.el (gnus-group-prepare-flat): List group not in list.
18211         (gnus-group-prepare-flat-list-dead): Use gnus-group-insert-group-line.
18212         * gnus-topic.el (gnus-group-prepare-topics): Ditto.
18213         * gnus.el (gnus-server-browse-hashtb): New variable.
18214
18215 2000-10-29 22:31:40  ShengHuo ZHU  <zsh@cs.rochester.edu>
18216
18217         * nnfolder.el (nnfolder-open-nov): Use group.
18218
18219 2000-10-29 17:23:15  ShengHuo ZHU  <zsh@cs.rochester.edu>
18220
18221         * nnfolder.el: Add NOV. Set version to 2.0.
18222         (nnfolder-nov-is-evil): If non-nil, nnfolder acts like 1.0.
18223
18224 2000-10-29 10:35:08  ShengHuo ZHU  <zsh@cs.rochester.edu>
18225
18226         * mml2015.el (mml2015-mailcrypt-sign): Use mc-sign-generic.
18227
18228 2000-10-29 09:42:05  ShengHuo ZHU  <zsh@cs.rochester.edu>
18229
18230         * gnus-srvr.el (gnus-browse-foreign-server): Show level mark.
18231         (gnus-browse-unsubscribe-group): Unsubscribed is not killed.
18232
18233 2000-10-29 08:28:58  ShengHuo ZHU  <zsh@cs.rochester.edu>
18234
18235         * nnfolder.el (nnfolder-read-folder): Don't goto point-min.
18236
18237 2000-10-28 19:11:01  ShengHuo ZHU  <zsh@cs.rochester.edu>
18238
18239         * mm-decode.el (mm-verify-function-alist): New variable.
18240         (mm-verify-option): New variable.
18241         (mm-decrypt-function-alist): Ditto.
18242         (mm-decrypt-option): Ditto.
18243         (mm-find-raw-part-by-type): New function.
18244         (mm-possibly-verify-or-decrypt): New function.
18245         (mm-dissect-multipart): Use it.
18246         * mml2015.el (mml2015-fix-micalg): New function.
18247         (mml2015-decrypt): Use new interface.
18248         (mml2015-verify):  Use new interface.
18249         (mml2015-setup): Make it bogus.
18250
18251 2000-10-28 16:54:45  ShengHuo ZHU  <zsh@cs.rochester.edu>
18252
18253         * mml.el (mml-generate-mime-postprocess-function): Set to
18254         mml-postprocess.
18255         (autoload): Autoload mml2015 and mml-smime.
18256         (mml-postprocess-alist): Use mml2015-sign and mml2015-encrypt.
18257         * mml2015.el (mml2015-encrypt): New function.
18258         (mml2015-sign): New function.
18259         (mml2015-encrypt-function): New variable.
18260         (mml2015-sign-function): New variable.
18261         (mml2015-mailcrypt-encrypt): Use message-recipients.
18262         (mml2015-setup): Don't set mml-generate-mime-postprocess-function.
18263         * mml-smime.el (mml-smime-setup): Ditto.
18264
18265 2000-10-28  Simon Josefsson  <sj@extundo.com>
18266
18267         * imap.el (imap-parse-resp-text-code): Workaround bug in Stalker
18268         Communigate Pro 3.3.1 server.
18269
18270         * mml-sec.el (mml-smime-encrypt-buffer): Support certfiles stored
18271         in buffers.
18272         (mml-secure-dns-server): Removed.
18273         (mml-secure-part-smime-encrypt-by-dns): Use DIG interface.  Don't
18274         write certificates to files.
18275
18276         * smime.el (smime-dns-server): New variable.
18277         (smime-mail-to-domain):
18278         (smime-cert-by-dns): New functions.
18279
18280         * dig.el: New file.
18281
18282 2000-10-28 10:09:41  ShengHuo ZHU  <zsh@cs.rochester.edu>
18283
18284         * message.el (message-options): New variable.
18285         (message-options-set-recipient): New function.
18286         (message-send): Use them.
18287         * gnus-int.el (gnus-request-replace-article): Use them.
18288         (gnus-request-accept-article): Ditto.
18289         * mml.el (mml-preview): Use them.
18290         * gnus-sum.el (gnus-summary-edit-article): Use them.
18291
18292         * message.el (message-options-get): New function.
18293         (message-options-get): New function.
18294         * rfc2047.el (rfc2047-encode-message-header): Use them.
18295         * mm-bodies.el (mm-encode-body): Use them.
18296
18297 2000-10-28  Simon Josefsson  <sj@extundo.com>
18298
18299         * nnimap.el (nnimap-retrieve-which-headers):
18300         (nnimap-request-article-part): Quote message-id.
18301
18302         * smime.el (smime-CA-directory): Rename from `smime-CAs'.
18303         (smime-CA-file): New variable.
18304         (smime-call-openssl-region): Don't error.
18305         (smime-sign-region): Return result value.
18306         (smime-encrypt-region): Ditto.
18307         (smime-verify-region): New function.
18308         (smime-decrypt-region): Ditto.
18309         (smime-verify-buffer): Ditto.
18310         (smime-decrypt-buffer): Ditto.
18311
18312         * mml.el: Require mml-sec.
18313         (mml-generate-mime-1): Support "sign" and "encrypt" MML tags.
18314         (mml-mode-map): Add "sign" and "encrypt" maps.
18315         (mml-menu): Add security menu.
18316         (mml-preview): Use generate-new-buffer.
18317
18318         * mml-sec.el: New file.
18319
18320 2000-10-28 03:43:03  ShengHuo ZHU  <zsh@cs.rochester.edu>
18321
18322         * mm-decode.el (mm-find-part-by-type): Move it here.
18323         * mml.el (mml-postprocess): Move it here.
18324         (mml-postprocess-alist): Move it here. Merge them.
18325
18326 2000-10-28 03:38:39  ShengHuo ZHU  <zsh@cs.rochester.edu>
18327
18328         * rfc2047.el (rfc2047-encode-message-header): Make sure no
18329         unencoded stuff in the header.
18330
18331 2000-10-28 02:40:46  ShengHuo ZHU  <zsh@cs.rochester.edu>
18332
18333         * gnus-group.el (gnus-group-listed-groups): New variable.
18334         (gnus-group-list-option): New variable.
18335         (gnus-group-list-limit-map): New keymap.
18336         (gnus-group-list-flush-map): New keymap.
18337         (gnus-group-list-plus-map): New keymap.
18338         (gnus-group-prepare-logic): New function.
18339         (gnus-group-prepare-flat): Merge with
18340         gnus-group-prepare-flat-predicate. Use gnus-group-listed-groups.
18341         (gnus-group-prepare-flat-list-dead): Ditto.
18342         (gnus-group-list-matching): Use gnus-group-prepare-function.
18343         (gnus-group-list-dormant): Ditto.
18344         (gnus-group-list-cached): Ditto.
18345         (gnus-group-listed-groups): New function.
18346         (gnus-group-list-limit): New function.
18347         (gnus-group-list-flush): New function.
18348         (gnus-group-list-plus): New function.
18349         * gnus-topic.el (gnus-group-prepare-topics): Accept predicate.
18350         (gnus-topic-prepare-topic): Ditto.
18351
18352 2000-10-27  Paul Jarc  <prj@po.cwru.edu>
18353
18354         * message.el (message-insert-to, message-get-reply-headers):
18355         (message-reply, message-followup): Mail-{Followup,Reply}-To.
18356
18357 2000-10-27 19:45:58  ShengHuo ZHU  <zsh@cs.rochester.edu>
18358
18359         * mml2015.el: New file.
18360         * smime.el: New file.
18361         * mml-smime.el: New file.
18362
18363 2000-10-27 19:42:12  ShengHuo ZHU  <zsh@cs.rochester.edu>
18364
18365         * ChangeLog: Moved to ChangeLog.1.
18366
18367     Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
18368   Copying and distribution of this file, with or without modification,
18369   are permitted provided the copyright notice and this notice are preserved.
18370
18371 ;; Local Variables:
18372 ;; coding: iso-2022-7bit
18373 ;; End: