9e65cfca21
OfflineIMAP v6.5.2-rc1 (2012-01-09) =================================== Commits v6.5.1.1 - v6.5.2-rc1: note: Proper Changelog still in Changelog-draft.rstd72bb88
Improve error message3284e01
Revert "use .response() rather _get_untagged_response()"81f194a
mbnames should write out local and not nametransformed box names7184ec2
Sanity check return value of UIDVALIDTY response50de217
Allow to pass 'force' arg to selectro() to enforce a new selected71805
Changelog entry about "realdelete" option0a275b9
Add scary warnings about "realdelete" option Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
20 lines
731 B
Python
20 lines
731 B
Python
__all__ = ['OfflineImap']
|
|
|
|
__productname__ = 'OfflineIMAP'
|
|
__version__ = "6.5.2-rc1"
|
|
__copyright__ = "Copyright 2002-2012 John Goerzen & contributors"
|
|
__author__ = "John Goerzen"
|
|
__author_email__= "john@complete.org"
|
|
__description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
|
|
__license__ = "Licensed under the GNU GPL v2+ (v2 or any later version)"
|
|
__bigcopyright__ = """%(__productname__)s %(__version__)s
|
|
%(__license__)s""" % locals()
|
|
__homepage__ = "http://offlineimap.org"
|
|
|
|
banner = __bigcopyright__
|
|
|
|
from offlineimap.error import OfflineImapError
|
|
# put this last, so we don't run into circular dependencies using
|
|
# e.g. offlineimap.__version__.
|
|
from offlineimap.init import OfflineImap
|