2011-01-19 20:13:38 +01:00
|
|
|
=========
|
|
|
|
ChangeLog
|
|
|
|
=========
|
|
|
|
|
|
|
|
Users should ignore this content: **it is draft**.
|
|
|
|
|
|
|
|
Contributors should add entries here in the following section, on top of the
|
|
|
|
others.
|
|
|
|
|
|
|
|
`WIP (coming releases)`
|
|
|
|
=======================
|
|
|
|
|
|
|
|
New Features
|
|
|
|
------------
|
2011-03-04 17:34:23 +01:00
|
|
|
* Implement UIDPLUS extension support. OfflineIMAP will now not insert
|
|
|
|
an X-OfflineIMAP header if the mail server supports the UIDPLUS
|
|
|
|
extension.
|
2011-02-23 10:00:14 +01:00
|
|
|
* SSL: support subjectAltName.
|
|
|
|
|
2011-01-19 20:13:38 +01:00
|
|
|
Changes
|
|
|
|
-------
|
|
|
|
|
2011-01-27 21:17:35 +01:00
|
|
|
* Makefile use magic to find the version number.
|
2011-03-03 11:05:15 +01:00
|
|
|
* Rework the repository module
|
2011-03-06 11:04:46 +01:00
|
|
|
* Change UI names to Blinkenlights,TTYUI,Basic,Quiet,MachineUI.
|
|
|
|
Old names will still work, but are deprecated.
|
|
|
|
Document that we don't accept a list of UIs anymore.
|
2011-03-06 20:03:04 +01:00
|
|
|
* Reworked the syncing strategy. The only user-visible change is that
|
|
|
|
blowing away LocalStatus will not require you to redownload ALL of
|
|
|
|
your mails if you still have the local Maildir. It will simply
|
|
|
|
recreate LocalStatus.
|
2011-01-27 21:17:35 +01:00
|
|
|
|
2011-01-19 20:13:38 +01:00
|
|
|
Bug Fixes
|
|
|
|
---------
|
|
|
|
|
2011-03-07 22:23:21 +01:00
|
|
|
* Fix ignoring output while determining the rst2xxx command name to build
|
|
|
|
documentation.
|
fix hang because of infinite loop reading EOF
Read() should return empty string when EOF happen, instead of looping
forever. This is the right semantics of read(), and a wrapped version
should not change it.
If you read the read(2) system call manpage, it tells you that when EOF
is seen, return value is 0; it does not say
``loop forever when EOF happen''.
After the EOF detection is patched you can see the
following exception:
WARNING: ERROR attempting to copy message 344 for account Gmail:Traceback (most recent call last):
File "/usr/lib/pymodules/python2.6/offlineimap/folder/Base.py", line 282, in copymessageto
message = self.getmessage(uid)
File "/usr/lib/pymodules/python2.6/offlineimap/folder/IMAP.py", line 216, in getmessage
initialresult = imapobj.uid('fetch', '%d' % uid, '(BODY.PEEK[])')
File "/usr/lib/python2.6/imaplib.py", line 753, in uid
typ, dat = self._simple_command(name, command, *args)
File "/usr/lib/python2.6/imaplib.py", line 1060, in _simple_command
return self._command_complete(name, self._command(name, *args))
File "/usr/lib/python2.6/imaplib.py", line 890, in _command_complete
raise self.abort('command: %s => %s' % (name, val))
abort: command: UID => socket error: EOF
Signed-off-by: Bao Haojun <baohaojun@gmail.com>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
2011-03-03 10:48:26 +01:00
|
|
|
* Fix hang because of infinite loop reading EOF.
|
2011-03-01 14:49:02 +01:00
|
|
|
* Allow SSL connections to send keep-alive messages.
|
2011-03-01 15:08:38 +01:00
|
|
|
* Fix regression (UIBase is no more).
|
2011-03-03 13:44:39 +01:00
|
|
|
* Make profiling mode really enforce single-threading
|
2011-03-04 17:34:21 +01:00
|
|
|
* Do not send localized date strings to the IMAP server as it will
|
|
|
|
either ignore or refuse them.
|
2011-01-19 20:13:38 +01:00
|
|
|
|
|
|
|
Pending for the next major release
|
|
|
|
==================================
|
|
|
|
|
|
|
|
* UIs get shorter and nicer names. (API changing)
|
|
|
|
|
|
|
|
|
|
|
|
Stalled
|
|
|
|
=======
|
|
|
|
|
|
|
|
* Learn Sqlite support.
|
|
|
|
Stalled: it would need to learn the ability to choose between the current
|
|
|
|
format and SQL to help testing the long term.
|