literal+
[elisp/wanderlust.git] / NEWS
1 Wanderlust NEWS -- User-visible changes in Wanderlust.
2
3 * Changes in 2.16.0 from 2.14.x
4
5 ** Optimize refiling.
6    Interpret filter, pipe and multi folder and select the most suitable method.
7
8 ** Speed up bsfilter processing.
9
10 ** Speed up handling of maildir folder.
11
12 ** Use IMAP4 non-synchronizing literals (RFC 2088) if it is available.
13
14 ** Open following thread when you put mark on message in summary buffer.
15
16 ** Use EasyPG (http://www.easypg.org) if it is available.
17
18 ** A folder type `namazu' is abolished.  New folder type `search' is added instead.
19
20 ** Fixed against overwriting existing messages in archive folders.
21    There was a bug on appending messages.
22
23 * Changes in 2.14.1 from 2.14.0
24   Version 2.14.1 is a bug fix version of 2.14.0.
25
26 ** Fixed message order of Maildir.
27
28 ** Icon for the access folder is displayed.
29
30 * Changes in 2.14.0 from 2.12.2
31
32 ** New folder type `access' is added.
33    In `access' folder, sub-folders of the specified folder can be treated
34    as one folder.
35
36 ** Synchronization speed of the folder is improved.
37    The function which calculates list diff is re-wrote and is faster
38    than previous implementation, especially in the folders with large
39    number of the messages.
40
41 ** New event handling mechanism is incorporated.
42
43 ** Improved the disconnected operations for IMAP draft saving.
44    There was a bug of message numbering in the disconnected imap draft.
45    It is fixed using new event handling mechanism.
46
47 ** `Shimbun' summary buffers are updated dynamically.
48    Some shimbun folder does not have correct information.
49    In this version, they are corrected using the message body after retrieval.
50    It is implemented with new event handling mechanism.
51
52 ** Many bug fixes.
53
54 * Changes in 2.12.1 from 2.12.0
55   Version 2.12.1 is a bug fix version of 2.12.0.
56
57 ** Now Maildir is usable on Windows systems.
58    Note that it does not conform to the Maildir standard.
59
60 ** Fixed the problem of the cache flag inconsistency on the filter folder etc.
61    There was a problem that the summary buffer displays cached messages as
62    uncached in some folders.
63
64 ** Fixed the bug that the new flag cannot be changed in some cases.
65
66 ** Fixed the bug that flag are not taken over correctly from Maildir.
67    Only the flag of the first message was taken over in earlier versions.
68
69 ** Fixed the problem in display module for IMAP messages.
70    Now partially fetched messages are displayed correctly.
71    If a message included child messages, their headers were not displayed.
72
73 ** Fixed the problem that %INBOX is not appeared as a subfolder of %INBOX.
74    In cyrus-imapd, this problem occurred.
75
76 ** Now user defined flags are appeared in the completions for search conditions.
77
78 ** Fixed the problem that a wrong flag folders are created by some flag names.
79    If a flag contains a character other than [a-z], the problem occurred.
80
81 ** Now expansion of the access group "@/" works correctly.
82
83 ** Fixed the problem to cause an error on automatic draft saving.
84
85 ** Fixed the problem to cause an error on invoking address manager.
86    A message which includes a string "To:" etc. caused an error.
87
88 ** Fixed the problem in the flag inheritance function of the filter folder.
89
90 ** New option `wl-summary-resend-use-cache'.
91    You can resend messages using cache in the offline status.
92
93 ** New option `elmo-network-session-idle-timeout'.
94    Network sessions which are not used longer than this value (in seconds)
95    are thrown away and new session is created.
96
97 ** Improved redisplay functions for "H" and "M" key.
98    MIME structure and buffer is reused for redisplay.
99
100 ** Now attributes for netnews are displayed in the draft preview.
101
102 * Changes in 2.12.0 from 2.10.1
103
104 ** The structure of the message database is improved.
105    Following setting is to convert legacy msgdb to the new one when you
106    select a folder.
107    (setq elmo-msgdb-default-type 'standard
108          elmo-msgdb-convert-type 'auto)
109    (which is initial setting.)
110
111 ** The temporary mark and corresponding action is now customizable.
112
113    By default, following mark-and-actions are defined.
114    mark-and-actions which are defined as before.
115     "o" refile   (same as before)
116     "O" copy     (same as before)
117     "d" dispose  (formerly delete, 'D' mark. Messages are moved to
118                   wl-trash-folder. Its behavior is decided by
119                   wl-dispose-folder-alist.)
120    New mark-and-actions which are newly introduced.
121     "D" delete   (remove message immediately)
122     "i" prefetch (prefetch message)
123     "~" resend   (resend message)
124    Press 'x' to execute actions which corresponds to the mark.
125    mark-and-actions can be define by the new variable, 
126    'wl-summary-mark-action-list'. See its docstring for more in detail.
127
128 ** SPAM filter module is added.
129    Following spam filter libraries are supported.
130    bogofilter
131    spamfilter
132    bsfilter
133    SpamAssassin
134    SpamOracle
135    Regular Expressions Header Matching
136
137 ** 'mark folder is renamed to 'flag folder.
138    Related to this, original message location is displayed as help-echo on summary
139    line in the 'flag folder (you can control the behavior by
140    wl-highlight-summary-line-help-echo-alist).
141
142 ** Now you can put arbitrary user defined flag on message.
143    You can specify its flag by "F" in the summary mode.
144
145 ** New marks, 'A' and 'a' are added for answered messages.
146    Now answered messages have its own mark in the summary mode.
147    'A' is displayed for uncached messages and 'a' is for cached messages.
148
149 ** New mark,s 'F' and 'f' are added for forwarded messages.
150    Now forwarded messages have its own mark in the summary mode.
151    'F' is displayed for uncached messages and 'f' is for cached messages.
152
153 ** New search condition 'Flag' (Status of the message) is added.
154    There are flags 'unread', 'important', 'answered',
155    'digest' (unread or important) and 'any' (any of the flag).
156    For example, following filter folder contains only unread or important
157    messages in the %inbox folder.
158
159    /flag:digest/%inbox
160
161 ** Draft save function is improved.
162    Now you can set wl-draft-folder to IMAP folder, Maildir folder, and so on.
163
164 ** Automatically save draft buffers by using idle-timer.
165    You can control behavior by the variable `wl-auto-save-drafts-interval'.
166
167 ** 'H' key(display all header) and 'M' key(display without MIME analysis)
168    are now toggle key.
169    Now you can cite messages displayed by 'M'.
170
171 ** Now you can sort summary lines into descending order.
172
173 ** Abbreviate too long header extended to lines in message buffer.
174
175 ** Persistent mark string in summary buffer is changed.
176    Default setting indicates cached state by its upper/lower case.
177
178 ** It displays draft preview on sending confirmation.
179
180 ** Sending parameters are displayed on draft preview.
181    See description of the variable wl-draft-preview-attribute for detail.
182
183 ** You can run biff with idle-timer by setting wl-biff-use-idle-timer.
184
185 ** Now wl-draft-kill confirms with yes-or-no-p.
186
187 ** Summary thread will be divided if its depth is larger than certain amount.
188    The limit is controlled by the variable wl-summary-max-thread-depth.
189
190 ** Emacs multi-tty support is supported.
191    (http://lorentey.hu/project/emacs.html)
192
193 ** New sort spec 'size' is added in the summary mode.
194    Now you can sort the summary by message size.
195
196 ** The variable wl-refile-policy-alist is abolished.
197
198 ** Batch processing module is added.
199
200 ** In the multi-folder, status of messages are synchronized with original
201    folder.
202    For example, unread status of '+inbox' is updated to '*+inbox,+outbox'.
203
204 ** The function wl-summary-resend-message is abolished.
205    you can put mark for resending by wl-summary-resend instead.
206
207 ** Variables renamed
208    wl-delete-folder-alist is renamed to wl-dispose-folder-alist.
209
210 ** POP3 folder existence check is simplified (by default).
211    The default value for elmo-pop3-exists-exactly is changed to nil.
212
213 ** POP3 response code extension defined in the RFC2449 is supported.
214    If a login failure occurred because of user's another POP3 session, 
215    entered password is not cleared and used in the future login.
216
217 ** IMAP4 commands EXPUNGE and CHECK are now send asynchronously.
218
219 ** Default value of wl-folder-hierarchy-access-folders has been changed.
220
221 ** Access group "@/" of shimbun folders can be used now.
222
223 ** Show contents of NEWS(.ja) when you start Wanderlust newer than the
224    one you used previously.
225
226 ** Default values of wl-draft-reply-*-list are changed. 
227    See samples/en/dot.wl for old values.
228
229 ** wl-draft-reply-myself-*-list are abolished and integrated into
230    wl-draft-reply-*-list.
231
232 ** You can control initial cursor position for replying draft.
233    Set variable wl-draft-reply-default-position appropriately.
234
235 ** Changed the way to specify configuration of draft buffer window.
236    You can choose keep, full or split as values of wl-draft-buffer-style
237    and wl-draft-reply-buffer-style.
238
239 ** Commands to verify/decrypt non-MIME PGP message are added.
240    C-c:v, C-c:d in message buffer to verify or decrypt respectively.
241
242 ** New hooks
243    wl-draft-reply-hook
244    wl-summary-reply-hook
245    wl-draft-forward-hook
246    wl-summary-forward-hook
247    wl-draft-kill-pre-hook
248    wl-summary-resend-hook
249
250 ** Abolished hook
251    wl-reply-hook
252
253 ** New face
254
255    wl-highlight-summary-disposed-face
256    wl-highlight-summary-prefetch-face
257    wl-highlight-summary-resend-face
258    wl-highlight-summary-answered-face
259    wl-highlight-action-argument-face
260
261 ** Abolished face
262
263    wl-highlight-refile-destination-face
264    (renamed to wl-highlight-action-argument-face)
265
266 * Changes in 2.10.1 from 2.10.0
267   Version 2.10.1 is a bug fix version of 2.10.0.
268
269 ** Fixed the problem that msgdb be destroyed when print-length or
270    print-level has Non-nil value.
271
272 ** wl-summary-pack-number in pipe folder is disabled temporarily
273    since it didn't work. Invoke it in destination folder instead.
274
275 ** Fixed a problem that wl-folder-move-cur-folder doesn't work.
276
277 ** Fixed a problem that wl-draft-reedit doesn't work properly on Meadow.
278
279 ** Fixed a problem that wl-summary-pack-number doesn't work on Maildir and
280    shimbun folders.
281
282 ** Fixed a problem that cache file is not protected even if it is marked
283    as important.
284
285 ** Fixed a problem that %# in wl-summary-line-format cannot handle large
286    number.
287
288 ** Fixed a problem to remove password even if SMTP AUTH failed at non-auth
289    phase.
290
291 ** Default value of wl-message-buffer-prefetch-folder-type-list,
292    wl-message-buffer-prefetch-idle-time, and
293    wl-message-buffer-prefetch-depth are changed.
294
295 ** Fixed to compile on XEmacs without mule feature.
296
297 * Changes in 2.10.0 from 2.8.1
298
299 ** You can alter the format of summary lines.
300    Specify format by wl-summary-line-format. If you want to change ones
301    according to folder names, use wl-folder-summary-line-format-alist.
302
303 ** Save format for the draft folder has been changed. Messages are encoded
304    before saved by wl-draft-save.
305
306 ** elmo-split is newly established. It provides a way to split messages
307    according to some rule a la procmail.
308
309 ** Buffer prefetch works fine now. Messages of the number specified by
310    wl-message-buffer-prefetch-depth are loaded into buffer in advance.
311
312 ** elmo-dop-queue-flush flushes queue that concerns plugged folder.
313
314 ** Starting Wanderlust on the new frame is possible now. Set as
315    (autoload 'wl-other-frame "wl" "Wanderlust on new frame." t)
316
317 ** In Folder mode, you can go into virtual folder which consists of messages
318    with some specified condition (wl-folder-virtual). It is binded to "V".
319
320 ** In Folder mode, you can search folders containing messages with some
321    specified condition (wl-folder-pick). It is binded to "?".
322
323 ** Now you can rename access group folders.
324
325 ** You can specify ON/OFF of thread view for newly created summary.
326    Set wl-summary-default-view, wl-summary-default-view-alist.
327
328 ** Temporary marks are kept when you exit from sticky summary by q or g. 
329
330 ** Key bindings concerning the sticky summary have been changed.
331    By C-u g, the sticky summary is destroyed as well as C-u q. In summary or
332    folder mode, G opens the sticky summary.
333
334 ** You can go round summary buffers by C-cC-n and C-cC-p.
335
336 ** Members of the list wl-folder-hierarchy-access-folders is now some REGEXP
337    for access group names instead of exact group names.
338
339 ** In header part of the draft buffer C-a brings cursor to the beginning of
340    the line or the beginning of the header body.
341
342 ** You can send encapsulated blind carbon copies. Its default field name is
343    "Ecc:".
344
345 ** C-c C-y (Draft) can cite region of the message.
346    It affects if transient-mark-mode (Emacs) or zmacs-regions (XEmacs) is
347    Non-nil and the region is active.
348
349 ** You can delete a part from multipart message.
350    It is binded as "D" in message buffer.
351
352 ** You can easily configure server settings to post news article.
353    Set wl-nntp-posting-config-alist appropriately. See Info for an example.
354
355 ** You can specify some function in wl-draft-reply-with-argument-list etc.
356    for setting the recipients in draft by the return value of it.
357
358 ** The interface of the function wl-draft has been changed.
359    The initial set of headers are handed as an association list.
360
361 ** The uses of wl-generate-mailer-string-function has been changed.
362    Specify a function which returns some string to appear in User-Agent header.
363
364 ** The Reference Card (doc/wl-refcard.tex) describes important key bindings.
365
366 ** Many bug fixes.
367
368 * Changes in 2.8.0 from 2.6.1
369
370 ** Nemacs, Mule 2.3 based on Emacs 19.28 are not supported any longer.
371
372 ** Wanderlust might not work with FLIM 1.14.2 and older.
373    It is recommended to use FLIM 1.14.3 or newer and associated SEMI.
374
375 ** Now available `make check' environment test for user.
376
377 ** If you set obsolete variables (e.g. renamed ones) in .wl etc, Wanderlust
378    shows warning messages and urge you to change settings.
379    Change your settings according to the messages, please.
380    If you want to suppress warnings, set elmo-obsolete-variable-show-warnings
381    to nil.
382
383 ** Added new internal folders: 'sendlog folder
384
385 ** Added new type of folders: shimbun folder
386
387    Format: '@' 'virtual server name' '.' 'group name'
388
389 ** Added new type of folders: namazu folder
390
391    Format:  '[' 'search condition' ']' [ 'absolute path of namazu index' ]
392
393 ** With pipe folder, now you can preserve messages on the server.
394    At the next time you access it, only new messages will be copied.
395
396    Format:  '|' 'source folder' '|:' 'destination folder'
397
398 ** Address manager is now available (start by C-c C-a).
399    You can edit address book and import recipients to draft from it.
400
401 ** ACAP (RFC2244) is supported(experimental).
402
403 ** Now you can preserve IMAP4 message by part as a cache.
404    If you skipped enormous part, you can read other than skipped part when
405    you are off line.
406
407 ** Wanderlust also creates message view through prefetching.
408    Displaying of prefetched messages speeded up because of this.
409
410 ** Truncation of lines in message buffer or draft buffer is now controllable.
411    Non-nil value of wl-message-truncate-lines or wl-draft-truncate-lines
412    means truncating long lines at window width.
413
414 ** Bitmap image for opening demo is removed from wl-demo.elc and now loaded
415    from wl-icon-directory.
416    Special logo is displayed through the Christmas season :)
417
418 ** Overall elmo module is rewritten.
419
420 ** Variables depending on elmo backends are renamed to "elmo-backend-*".
421    e.g. elmo-default-imap4-server is renamed to elmo-imap4-default-server.
422
423 ** Variables named xxx-func are renamed to xxx-function.
424
425 ** X-Face utility 1.3.6.12 or older is not supported any longer.
426    Please install X-Face utility 1.3.6.13 or later, if necessary.
427
428 ** Wanderlust distinguishes stream-type on plugged mode. They are treated as
429    different entries.
430
431 ** msgdb path for archive and multi folders are changed.
432    No problem for running wanderlust even if you do not deal with them.
433    But if you don't want to leave useless data on the disk, delete under
434    .elmo/multi and .elmo/archive in advance.
435
436 ** Variables named xxx-dir are renamed to xxx-directory.
437    e.g. wl-icon-dir is renamed to wl-icon-directory.
438    Take attention if you set for display of startup logo, etc.
439
440 ** elmo-cache-dirname is abolished and elmo-cache-directory is newly created.
441    You can put cache directory to another place by setting
442    elmo-cache-directory.
443
444 ** Default value of elmo-enable-disconnected-operation is now `t'.
445    When the relevant messages are cached, you can do some operations
446    even in the off-line state.
447
448 ** Now messages with "$" mark is not remained in the summary buffer when
449    the actual message itself is deleted.
450    Please visit the 'mark folder to review the messages with the "$" mark.
451
452 * Changes in 2.6.1 from 2.6.0
453   Version 2.6.1 is basically a bug fix version of 2.6.0.
454
455 ** Fixed a problem that Emacs 21 causes `Recursive load...' error.
456
457 ** Fixed a problem that thread character is broken in XEmacs 21.1.
458
459 ** Fixed a problem that in IMAP4 folder, progress bar is remained in XEmacs .
460
461 ** Fixed a problem that searching is failed for the header fields that
462    begins with X-.
463
464 ** Some other fixes.
465
466 * Changes in 2.6.0 from 2.4.1
467
468 ** FLIM 1.13.x is not supported any longer.
469    Please install FLIM 1.14.1 or later.
470
471 ** Now folder and summary buffer can be opened in a separate frame.
472    If `wl-folder-use-frame' is set as t, `M-x wl' creates a new frame
473    for folder mode. If `wl-summary-use-frame' is set as t, new frames
474    are created for each summary window.
475
476 ** Cursor moving speed ('N' or 'P' in summary) is greatly improved.
477
478 ** Folder checking speed for filter folder of localdir
479    folder using `last' or `first' (Ex. /last:100/+inbox) is improved.
480
481 ** Retrieval progress of each message is displayed in POP and IMAP folder.
482
483 ** Coloring of summary buffer is processed on demand (only on Emacs).
484    If `wl-summary-lazy-highlight' is non-nil, 
485    only visible portion of the buffer is colored.
486
487 ** Customizable biff notify.
488    New hook `wl-biff-notify-hook' and `wl-biff-unnotify-hook' is
489    now available.
490    e.g. (add-hook wl-biff-notify-hook 'ding)
491
492 ** Many bug fixes.
493
494 * Changes in 2.4.1 from 2.4.0
495   Version 2.4.1 is basically a bug fix version of 2.4.0.
496
497 ** Wanderlust 2.4.1 now works on FLIM 1.14.x. 
498
499 ** Fixed a problem that POP connection remains after POP before SMTP.
500
501 ** The specification of IMAP4 authentication method for clear password
502    is changed.
503
504 In 2.4.0, To use clear password authentication method in IMAP4
505 (Logging in with LOGIN command), you have to set the variable
506 `elmo-default-imap4-authenticate-type' as 'plain (or nil).
507 But in 2.4.1, it is changed to 'clear (or nil).
508 Example:
509 (setq elmo-default-imap4-authenticate-type 'plain)
510 should be changed to
511 (setq elmo-default-imap4-authenticate-type 'clear)
512
513 * Changes in 2.4.0 from 1.1.1
514
515 ** Version Number
516 The version numbering convention for Wanderlust is changed. 
517
518 In earlier versions, 1.x were stable version and from 2.0.x to 2.2.x
519 were beta version. But since version 2.3.0, the second (minor) version
520 number implies the stability of the Wanderlust. Even minor number
521 corresponds to a stable version, and an odd minor number corresponds
522 to a development version. This version numbering is based on the
523 widespread convention of open source development.
524
525 On the open CVS server cvs.m17n.org, main trunk contains the current
526 beta (newest experimental) version, and branches contain the stable
527 version.  (If the version is 2.4.x, the branch name is wl-2_4)
528
529 ** Install
530
531 *** FLIM 1.12 is not supported anymore.
532 See the file INSTALL for details.
533
534 *** APEL 10.2 or later is required.
535 tm-8 users should check the version of APEL (tm-8.8 contains old APEL).
536
537 ** New feature
538
539 *** LDAP support
540 Complete e-mail address in draft by searching LDAP server.
541 If the variable wl-use-ldap is non-nil, LDAP feature is enabled
542 (Initial setting is nil).
543
544 *** UIDL support in POP3 folder
545 POP3 folder now saves the status of summary and it improves summary
546 update speed. If the variable elmo-pop3-use-uidl is non-nil, UIDL is
547 used (Initial setting is t).
548
549 *** Emacs 21 support
550 Wanderlust has started on supporting Standard Emacs 21.
551 Toolbars and icon images can be shown in almost Wanderlust
552 frames like XEmacs.
553
554 *** biff feature
555 Server mailbox is checked periodically.
556 If new mail is arrived, Wanderlust changes the biff (icon) on the modeline
557 and updates folder mode content.
558
559 *** expire-hide 
560 Now expire mechanism has new feature `hide', it does not remove
561 messages actually from folder but hides messages from summary. It
562 improves processing speed for large folders.
563
564 *** Message thread restoring feature
565 Automatic correction of broken threads by subject matching is now available.
566 Thread modification by hand (M-w (copy) and C-y (paste) in summary mode)
567 is also available.
568
569 *** Password expiration timer
570 Password cache expires after elmo-passwd-life-time is passed.
571 (nil means no expiration. Initial setting is nil)
572
573 *** killed-list
574 Deleted messages in the NNTP folder are saved to `killed-list'.  The
575 messages in the killed-list are treated as if it were not exist on the
576 server. Non-nil value for elmo-use-killed-list enables this feature
577 (Initial setting is t). By this feature, NNTP pipe folder works correctly.
578
579 *** Maildir pack is now available
580 M-x wl-summary-pack-number in the summary mode of Maildir folder
581 re-numbers the messages.
582
583 ** Searching
584
585 *** Complex condition can be specified for filter folder
586 AND condition, OR condition, NOT condition, and their combination can be
587  specified. Syntax of the condition part is changed. See Info for details.
588
589 Caution for those who upgrade from 1.1.1:
590 By this change, saving directory for the msgdb of filter folder is altered.
591 Former msgdbs are not needed anymore. It does not cause any problem but
592 if you don't want to keep useless disk, you should remove files
593 under the directory '.elmo/filter/' beforehand.
594
595 *** Searching of the NNTP folder is available
596 Now you can make NNTP filter folder.
597 (If only your NNTP server responds to XHDR command.)
598
599 *** Pick, Virtual in summary mode now accepts complex condition.
600 You can set AND condition and OR condition by typing
601 'AND' or 'OR' instead of field name.
602
603 ** Session, Authentication
604
605 *** elmo-default-*-authenticate-type only accepts symbol(used be a string)
606 Example:
607 (setq elmo-default-imap4-authenticate-type "cram-md5")
608 should be changed to
609 (setq elmo-default-imap4-authenticate-type 'cram-md5)
610
611 *** stream-type can be defined.
612 You can define stream type by
613 elmo-network-{imap4-,pop3-,nntp-,}stream-type-alist.
614 Some SSL related variables are abolished(renamed).
615 You can access to the networked folders (IMAP4, NNTP, POP3) via SOCKS
616 if you specify the folder name end with "!socks".
617
618 ** Draft
619
620 *** group-list is now available
621 You can specify address like 'Group: foo@gohome.org, bar@gohome.org;'.
622 If wl-draft-remove-group-list-contents is non-nil, the contents of 
623 group-list is removed before sending.
624
625 *** The draft preview displays recipient addresses on minibuffer 
626 You can confirm the group-list recipients by this.
627
628 *** Initial setting considers Reply-To:.
629 Default setting of wl-draft-reply-without-argument-list considers Reply-To: 
630 field (Set to To: field).
631
632 *** Replying rules for the messages sent from yourself.
633 You can define replying rules for the messages sent from yourself by
634 setting wl-draft-reply-myself-with-argument-list and
635 wl-draft-reply-myself-without-argument-list.
636
637 *** Full name is used in the reply address.
638 If wl-draft-reply-use-address-with-full-name is non-nil, then full
639 name is inserted in with e-mail addresses on the replied message
640 (Initial setting is t).
641
642 *** In-Reply-To: format is changed.
643 In-Reply-To: format is changed to simple one. It is based on 
644 draft-ietf-drums-msg-fmt-09.txt.
645
646 ** misc
647
648 *** Message thread processing is improved.
649
650 *** Renamed variables
651 wl-refile-guess-func-list => wl-refile-guess-functions
652 wl-summary-temp-above => wl-summary-target-above
653
654 *** You can set function to wl-fcc.
655 You can change fcc folder name dynamically. For example, change folder name
656 by month.
657
658 *** elmo-search-mime-charset is abolished.
659 Charset is guessed from the string you typed.
660
661 *** Useless headers are removed when you forward the message.
662 You can specify removed headers by wl-ignored-forwarded-headers.
663
664 *** wl-highlight-group-folder-by-numbers is abolished.
665 It is renamed to wl-highlight-folder-by-numbers and has following meaning.
666   `t'   : Whole line is colored by message number.
667   `nil' : Whole line is colored by folder status.
668    Number (ex. `1') : Line is colored by message number and folder status.
669
670 *** Header visibility control is changed.
671 Header visibility is controlled by Wanderlust (was controlled by SEMI).
672 You can change header visibility by wl-message-ignored-field-list and 
673 wl-message-visible-field-list.
674
675 *** DEMO is changed.
676 Less colors are used by DEMO pixmap.
677 Emacsen on character based terminal also display suitable DEMO.
678
679 \f
680 * Changes in 1.1.1 from 1.1.0
681   Version 1.1.1 is a bug fix version of 1.1.0 with minor user-visible changes.
682
683 ** Development on the CVS server is started.
684
685 ** Flush operation and sending queues if Wanderlust is  started
686    in plugged status.
687
688 ** Directory structure is changed.
689
690 *** 00README, 00README.ja is renamed to README, README.ja.
691
692 *** All wl-* files are moved to the directory 'wl'.
693
694 ** Syntax of wl-refile-rule-alist is extended (compatible with older one).
695
696 ** progress gauge
697 Progress gauge is displayed while processing in the Emacsen with
698 progress gauge feature.
699
700 * Changes in 1.1.0 from 1.0.3
701
702 ** Install
703
704 *** tm7 is not supported anymore.
705 see the file INSTALL for details.
706
707 *** WL_PREFIX and ELMO_PREFIX default as "wl"
708 (defvar WL_PREFIX "wl")
709 (defvar ELMO_PREFIX "wl")
710
711 e.g. install directory is
712   1.0.3  /usr/local/share/emacs/site-lisp/
713   1.1.0  /usr/local/share/emacs/site-lisp/wl/
714
715 *** Change default macro in Makefile.
716 EMACS   = emacs
717 XEMACS  = xemacs
718 use $(XEMACS), `package' and `install-package' target.
719
720 *** Install not only *.elc, but also *.el.
721
722 *** English document (wl.texi).
723
724 ** New feature
725
726 *** Modified UTF7 support.
727 Now international mailbox name can be used in IMAP4 in the Emacsen
728 with unicode feature.
729
730 *** Scoring support.
731
732 *** New plugged system.
733
734 *** IMAP4 support became more generic.
735 Many IMAP4 servers are supported.
736
737 *** New authentication type
738   IMAP4: CRAM-MD5, DIGEST-MD5, STARTTLS
739   POP3:  CRAM-MD5, DIGEST-MD5, SCRAM-MD5, STARTTLS
740   NNTP:  STARTTLS
741   SMTP:  STARTTLS
742
743 *** New folder type
744   |      Pipe Folder     Incorporate message.
745   .      Maildir Folder  Now Maildir is one of the folder type.
746   'cache Cache Folder    View internal cache.
747
748 *** Message buffer cache
749 Next message is prefetched while idle time.
750
751 *** Sticky summary is enhanced.
752 Now message buffer is also sticky.
753 You can specify always-sticky summary.
754
755 ** misc
756
757 *** Eliminated wl-draft-prepared-config-alist
758 unified with wl-draft-config-alist.
759
760 *** POP-before-SMTP variables are re-arranged.
761
762 *** Ask non-existing folder.
763  When FCC: contains new folder.
764  When auto-refile specified new folder.
765
766 *** Change fetch threshold and confirm settings.
767 wl-prefetch-confirm-threshold, wl-cache-fetch-threshold.
768
769 *** Can use petname for completion.
770
771 *** Change Message-ID generator.
772
773 *** wl-demo.el support bitmap-mule.
774
775 *** Allow function type `smtp-server' value.
776
777 *** Make sendlog when `wl-draft-sendlog' is non-nil.
778
779 *** `wl-summary-incorporate-marks'
780
781 *** Reserve prefetching while off-line status.
782
783 *** Draft use new frame when `wl-draft-use-frame' is non-nil.
784
785 *** New variable `wl-user-mail-address-list' .
786
787 *** New variable `wl-local-domain' for set FQDN.
788
789 *** Server side unread status is used in IMAP4 folder.
790
791 *** Change defaults
792   wl-mime-charset         iso-2022-jp  =>  x-ctext
793   wl-summary-move-order   'new  =>  'unread
794   wl-tmp-dir              TMPDIR  =>  ~/tmp/
795
796 *** New hooks
797   wl-draft-send-hook
798   wl-draft-reedit-hook
799   wl-mime-edit-preview-message-hook
800   wl-folder-suspend-hook
801   wl-summary-toggle-disp-folder-message-resumed-hook
802   wl-summary-line-inserted-hook
803   wl-thread-update-children-number-hook
804   mmelmo-header-inserted-hook
805   mmelmo-entity-content-inserted-hook
806
807 *** New function
808   wl-save
809   wl-summary-write
810   wl-summary-supersedes-message
811   wl-fldmgr-delete
812   wl-refile-guess-by-msgid
813   wl-address-user-mail-address-p
814   wl-summary-jump-to-msg-by-message-id-via-nntp
815   wl-summary-temp-mark-pick
816
817 * For details of changes, see the file ChangeLog.
818 \f
819 Local variables:
820 mode: outline
821 paragraph-separate: "[  \f]*$"
822 end: