From 275dbfa3fb1349c01f813bf8fe4bd812db671433 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Wed, 21 Sep 2011 02:08:09 +0200 Subject: [PATCH] Release 6.3.5-rc3 Update Changelog and __VERSION__ for 6.3.5-rc3. Also add in the notes for rc2 to the Changelog. Signed-off-by: Sebastian Spaeth --- Changelog.draft.rst | 4 ---- Changelog.rst | 52 +++++++++++++++++++++++++++++++++++++++++ offlineimap/__init__.py | 2 +- 3 files changed, 53 insertions(+), 5 deletions(-) diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 9bae1d8..b532734 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -15,10 +15,6 @@ New Features Changes ------- - -* Refresh server capabilities after login, so we know that Gmail - supports UIDPLUS (it only announces that after login, not - before). This prevents us from adding custom headers to Gmail uploads. Bug Fixes --------- diff --git a/Changelog.rst b/Changelog.rst index 4bdff19..05c9a57 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -11,6 +11,58 @@ ChangeLog on releases. And because I'm lazy, it will also be used as a draft for the releases announces. +OfflineIMAP v6.3.5-rc3 (2011-09-21) +=================================== + +Changes +------- + +* Refresh server capabilities after login, so we know that Gmail + supports UIDPLUS (it only announces that after login, not + before). This prevents us from adding custom headers to Gmail uploads. + +Bug Fixes +--------- + +* Fix the creation of folders on remote repositories, which was still + botched on rc2. + +OfflineIMAP v6.3.5-rc2 (2011-09-19) +=================================== + +New Features +------------ + +* Implement per-account locking, so that it will possible to sync + different accounts at the same time. The old global lock is still in + place for backward compatibility reasons (to be able to run old and + new versions of OfflineImap concurrently) and will be removed in the + future. Starting with this version, OfflineImap will be + forward-compatible with the per-account locking style. + +* Implement RFC 2595 LOGINDISABLED. Warn the user and abort when we + attempt a plaintext login but the server has explicitly disabled + plaintext logins rather than crashing. + +* Folders will now also be automatically created on the REMOTE side of + an account if they exist on the local side. Use the folderfilters + setting on the local side to prevent some folders from migrating to + the remote side. Also, if you have a nametrans setting on the remote + repository, you might need a nametrans setting on the local repository + that leads to the original name (reverse nametrans). + +Changes +------- + +* Documentation improvements concerning 'restoreatime' and some code cleanup + +* Maildir repositories now also respond to folderfilter= configurations. + +Bug Fixes +--------- + +* New emails are not created with "-rwxr-xr-x" but as "-rw-r--r--" + anymore, fixing a regression in 6.3.4. OfflineIMAP v6.3.5-rc1 (2011-09-12) =================================== diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 4eeb648..f5f094c 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.3.5-rc1" +__version__ = "6.3.5-rc3" __copyright__ = "Copyright 2002-2011 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "john@complete.org"