* elmo-util.el (elmo-file-field-primitive-condition-match): Fixed
[elisp/wanderlust.git] / NEWS
1 Wanderlust NEWS -- User-visible changes in Wanderlust.
2
3 * Version 2.6.1 is basically a bug fix version of 2.6.0.
4
5 ** Fixed a problem that Emacs 21 causes `Recursive load...' error.
6
7 ** Fixed a problem that thread character is broken in XEmacs 21.1.
8
9 ** Fixed a problem that in IMAP4 folder, progress bar is remained in XEmacs .
10
11 ** Fixed a problem that searching is failed for the header fields that
12    begins with X-.
13
14 ** Some other fixes.
15
16 * Changes in 2.6.0 from 2.4.1.
17
18 ** FLIM 1.13.x is not supported any longer.
19    Please install FLIM 1.14.1 or later.
20
21 ** Now folder and summary buffer can be opened in a separate frame.
22    If `wl-folder-use-frame' is set as t, `M-x wl' creates a new frame
23    for folder mode. If `wl-summary-use-frame' is set as t, new frames
24    are created for each summary window.
25
26 ** Cursor moving speed ('N' or 'P' in summary) is greatly improved.
27
28 ** Folder checking speed for filter folder of localdir
29    folder using `last' or `first' (Ex. /last:100/+inbox) is improved.
30
31 ** Retrieval progress of each message is displayed in POP and IMAP folder.
32
33 ** Coloring of summary buffer is processed on demand (only on Emacs).
34    If `wl-summary-lazy-highlight' is non-nil, 
35    only visible portion of the buffer is colored.
36
37 ** Customizable biff notify.
38    New hook `wl-biff-notify-hook' and `wl-biff-unnotify-hook' is
39    now available.
40    e.g. (add-hook wl-biff-notify-hook 'ding)
41
42 ** Many bug fixes.
43
44 * Version 2.4.1 is basically a bug fix version of 2.4.0.
45
46 ** Wanderlust 2.4.1 now works on FLIM 1.14.x. 
47
48 ** Fixed a problem that POP connection remains after POP before SMTP.
49
50 ** The specification of IMAP4 authentication method for clear password
51    is changed.
52
53 In 2.4.0, To use clear password authentication method in IMAP4
54 (Logging in with LOGIN command), you have to set the variable
55 `elmo-default-imap4-authenticate-type' as 'plain (or nil).
56 But in 2.4.1, it is changed to 'clear (or nil).
57 Example:
58 (setq elmo-default-imap4-authenticate-type 'plain)
59 should be changed to
60 (setq elmo-default-imap4-authenticate-type 'clear)
61
62 * Changes in 2.4.0 from 1.1.1.
63
64 ** Version Number
65 The version numbering convention for Wanderlust is changed. 
66
67 In earlier versions, 1.x were stable version and from 2.0.x to 2.2.x
68 were beta version. But since version 2.3.0, the second (minor) version
69 number implies the stability of the Wanderlust. Even minor number
70 corresponds to a stable version, and an odd minor number corresponds
71 to a development version. This version numbering is based on the
72 widespread convention of open source development.
73
74 On the open CVS server cvs.m17n.org, main trunk contains the current
75 beta (newest experimental) version, and branches contain the stable
76 version.  (If the version is 2.4.x, the branch name is wl-2_4)
77
78 ** Install
79
80 *** FLIM 1.12 is not supported anymore.
81 See the file INSTALL for details.
82
83 *** APEL 10.2 or later is required.
84 tm-8 users should check the version of APEL (tm-8.8 contains old APEL).
85
86 ** New feature
87
88 *** LDAP support
89 Complete e-mail address in draft by searching LDAP server.
90 If the variable wl-use-ldap is non-nil, LDAP feature is enabled
91 (Initial setting is nil).
92
93 *** UIDL support in POP3 folder
94 POP3 folder now saves the status of summary and it improves summary
95 update speed. If the variable elmo-pop3-use-uidl is non-nil, UIDL is
96 used (Initial setting is t).
97
98 *** Emacs 21 support
99 Wanderlust has started on supporting Standard Emacs 21.
100 Toolbars and icon images can be shown in almost Wanderlust
101 frames like XEmacs.
102
103 *** biff feature
104 Server mailbox is checked periodically.
105 If new mail is arrived, Wanderlust changes the biff (icon) on the modeline
106 and updates folder mode content.
107
108 *** expire-hide 
109 Now expire mechanism has new feature `hide', it does not remove
110 messages actually from folder but hides messages from summary. It
111 improves processing speed for large folders.
112
113 *** Message thread restoring feature
114 Automatic correction of broken threads by subject matching is now available.
115 Thread modification by hand (M-w (copy) and C-y (paste) in summary mode)
116 is also available.
117
118 *** Password expiration timer
119 Password cache expires after elmo-passwd-life-time is passed.
120 (nil means no expiration. Initial setting is nil)
121
122 *** killed-list
123 Deleted messages in the NNTP folder are saved to `killed-list'.  The
124 messages in the killed-list are treated as if it were not exist on the
125 server. Non-nil value for elmo-use-killed-list enables this feature
126 (Initial setting is t). By this feature, NNTP pipe folder works correctly.
127
128 *** Maildir pack is now available
129 M-x wl-summary-pack-number in the summary mode of Maildir folder
130 re-numbers the messages.
131
132 ** Searching
133
134 *** Complex condition can be specified for filter folder
135 AND condition, OR condition, NOT condition, and their combination can be
136  specified. Syntax of the condition part is changed. See info for details.
137
138 Caution for those who upgrade from 1.1.1:
139 By this change, saving directory for the msgdb of filter folder is altered.
140 Former msgdbs are not needed anymore. It does not cause any problem but
141 if you don't want to keep useless disk, you should remove files
142 under the directory '.elmo/filter/' beforehand.
143
144 *** Searching of the NNTP folder is available
145 Now you can make NNTP filter folder.
146 (If only your NNTP server responds to XHDR command.)
147
148 *** Pick, Virtual in summary mode now accepts complex condition.
149 You can set AND condition and OR condition by typing
150 'AND' or 'OR' instead of field name.
151
152 ** Session, Authentication
153
154 *** elmo-default-*-authenticate-type only accepts symbol(used be a string)
155 Example:
156 (setq elmo-default-imap4-authenticate-type "cram-md5")
157 should be changed to
158 (setq elmo-default-imap4-authenticate-type 'cram-md5)
159
160 *** stream-type can be defined.
161 You can define stream type by
162 elmo-network-{imap4-,pop3-,nntp-,}stream-type-alist.
163 Some SSL related variables are abolished(renamed).
164 You can access to the networked folders (IMAP4, NNTP, POP3) via SOCKS
165 if you specify the folder name end with "!socks".
166
167 ** Draft
168
169 *** group-list is now available
170 You can specify address like 'Group: foo@gohome.org, bar@gohome.org;'.
171 If wl-draft-remove-group-list-contents is non-nil, the contents of 
172 group-list is removed before sending.
173
174 *** The draft preview displays recipient addresses on minibuffer 
175 You can confirm the group-list recipients by this.
176
177 *** Initial setting considers Reply-To:.
178 Default setting of wl-draft-reply-without-argument-list considers Reply-To: 
179 field (Set to To: field).
180
181 *** Replying rules for the messages sent from yourself.
182 You can define replying rules for the messages sent from yourself by
183 setting wl-draft-reply-myself-with-argument-list and
184 wl-draft-reply-myself-without-argument-list.
185
186 *** Full name is used in the reply address.
187 If wl-draft-reply-use-address-with-full-name is non-nil, then full
188 name is inserted in with e-mail addresses on the replied message
189 (Initial setting is t).
190
191 *** In-Reply-To: format is changed.
192 In-Reply-To: format is changed to simple one. It is based on 
193 draft-ietf-drums-msg-fmt-09.txt.
194
195 ** misc
196
197 *** Message thread processing is improved.
198
199 *** Renamed variables
200 wl-refile-guess-func-list => wl-refile-guess-functions
201 wl-summary-temp-above => wl-summary-target-above
202
203 *** You can set function to wl-fcc.
204 You can change fcc folder name dynamically. For example, change folder name
205 by month.
206
207 *** elmo-search-mime-charset is abolished.
208 Charset is guessed from the string you typed.
209
210 *** Useless headers are removed when you forward the message.
211 You can specify removed headers by wl-ignored-forwarded-headers.
212
213 *** wl-highlight-group-folder-by-numbers is abolished.
214 It is renamed to wl-highlight-folder-by-numbers and has following meaning.
215   `t'   : Whole line is colored by message number.
216   `nil' : Whole line is colored by folder status.
217    Number (ex. `1') : Line is colored by message number and folder status.
218
219 *** Header visibility control is changed.
220 Header visibility is controlled by Wanderlust (was controlled by SEMI).
221 You can change header visibility by wl-message-ignored-field-list and 
222 wl-message-visible-field-list.
223
224 *** DEMO is changed.
225 Less colors are used by DEMO pixmap.
226 Emacsen on character based terminal also display suitable DEMO.
227
228 \f
229 * Version 1.1.1 is a bug fix version of 1.1.0 with minor user-visible changes.
230
231 ** Development on the CVS server is started.
232
233 ** Flush operation and sending queues if Wanderlust is  started
234    in plugged status.
235
236 ** Directory structure is changed.
237
238 *** 00README, 00README.ja is renamed to README, README.ja.
239
240 *** All wl-* files are moved to the directory 'wl'.
241
242 ** Syntax of wl-refile-rule-alist is extended (compatible with older one).
243
244 ** progress gauge
245 Progress gauge is displayed while processing in the Emacsen with
246 progress gauge feature.
247
248 * Changes in version 1.1.0 from 1.0.3.
249
250 ** Install
251
252 *** tm7 is not supported anymore.
253 see the file INSTALL for details.
254
255 *** WL_PREFIX and ELMO_PREFIX default as "wl"
256 (defvar WL_PREFIX "wl")
257 (defvar ELMO_PREFIX "wl")
258
259 e.g. install directory is
260   1.0.3  /usr/local/share/emacs/site-lisp/
261   1.1.0  /usr/local/share/emacs/site-lisp/wl/
262
263 *** Change default macro in Makefile.
264 EMACS   = emacs
265 XEMACS  = xemacs
266 use $(XEMACS), `package' and `install-package' target.
267
268 *** Install not only *.elc, but also *.el.
269
270 *** English document (wl.texi).
271
272 ** New feature
273
274 *** Modified UTF7 support.
275 Now international mailbox name can be used in IMAP4 in the Emacsen
276 with unicode feature.
277
278 *** Scoring support.
279
280 *** New plugged system.
281
282 *** IMAP4 support became more generic.
283 Many IMAP4 servers are supported.
284
285 *** New authentication type
286   IMAP4: CRAM-MD5, DIGEST-MD5, STARTTLS
287   POP3:  CRAM-MD5, DIGEST-MD5, SCRAM-MD5, STARTTLS
288   NNTP:  STARTTLS
289   SMTP:  STARTTLS
290
291 *** New folder type
292   |      Pipe Folder     Incorporate message.
293   .      Maildir Folder  Now Maildir is one of the folder type.
294   'cache Cache Folder    View internal cache.
295
296 *** Message buffer cache
297 Next message is prefetched while idle time.
298
299 *** Sticky summary is enhanced.
300 Now message buffer is also sticky.
301 You can specify always-sticky summary.
302
303 ** misc
304
305 *** Eliminated wl-draft-prepared-config-alist
306 unified with wl-draft-config-alist.
307
308 *** POP-before-SMTP variables are re-arranged.
309
310 *** Ask non-existing folder.
311  When FCC: contains new folder.
312  When auto-refile specified new folder.
313
314 *** Change fetch threshold and confirm settings.
315 wl-prefetch-confirm-threshold, wl-cache-fetch-threshold.
316
317 *** Can use petname for completion.
318
319 *** Change Message-ID generator.
320
321 *** wl-demo.el support bitmap-mule.
322
323 *** Allow function type `smtp-server' value.
324
325 *** Make sendlog when `wl-draft-sendlog' is non-nil.
326
327 *** `wl-summary-incorporate-marks'
328
329 *** Reserve prefetching while off-line status.
330
331 *** Draft use new frame when `wl-draft-use-frame' is non-nil.
332
333 *** New variable `wl-user-mail-address-list' .
334
335 *** New variable `wl-local-domain' for set FQDN.
336
337 *** Server side unread status is used in IMAP4 folder.
338
339 *** Change defaults
340   wl-mime-charset         iso-2022-jp  =>  x-ctext
341   wl-summary-move-order   'new  =>  'unread
342   wl-tmp-dir              TMPDIR  =>  ~/tmp/
343
344 *** New hooks
345   wl-draft-send-hook
346   wl-draft-reedit-hook
347   wl-mime-edit-preview-message-hook
348   wl-folder-suspend-hook
349   wl-summary-toggle-disp-folder-message-resumed-hook
350   wl-summary-line-inserted-hook
351   wl-thread-update-children-number-hook
352   mmelmo-header-inserted-hook
353   mmelmo-entity-content-inserted-hook
354
355 *** New function
356   wl-save
357   wl-summary-write
358   wl-summary-supersedes-message
359   wl-fldmgr-delete
360   wl-refile-guess-by-msgid
361   wl-address-user-mail-address-p
362   wl-summary-jump-to-msg-by-message-id-via-nntp
363   wl-summary-temp-mark-pick
364
365 * For details of changes, see the file ChangeLog.
366 \f
367 Local variables:
368 mode: outline
369 paragraph-separate: "[  \f]*$"
370 end: