45782ca3ac
OfflineIMAP v6.5.1 (2012-01-07) - "Quest for stability" ======================================================= * Fixed Maildir regression "flagmatchre" not found. (regressed in 6.5.0) * Have console output go by default to STDOUT and not STDERR (regression in 6.5.0) * Fixed MachineUI to urlencode() output lines again, rather than outputting multi-line items. It's ugly as hell, but it had been that way for years. * Remove the old global locking system. We lock only the accounts that we currently sync, so you can invoke OfflineImap multiple times now as long as you sync different accounts. This system is compatible with all releases >= 6.4.0, so don't run older releases simultanous to this one.
20 lines
727 B
Python
20 lines
727 B
Python
__all__ = ['OfflineImap']
|
|
|
|
__productname__ = 'OfflineIMAP'
|
|
__version__ = "6.5.1"
|
|
__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
|