2010-12-22 12:35:41 +01:00
|
|
|
__all__ = ['OfflineImap']
|
|
|
|
|
|
|
|
__productname__ = 'OfflineIMAP'
|
2015-09-28 03:09:43 +02:00
|
|
|
__version__ = "6.6.0"
|
2015-12-05 00:39:43 +01:00
|
|
|
__revision__ = ""
|
2015-03-14 15:45:56 +01:00
|
|
|
__bigversion__ = __version__ + __revision__
|
2015-01-07 22:20:14 +01:00
|
|
|
__copyright__ = "Copyright 2002-2015 John Goerzen & contributors"
|
2010-12-22 12:35:41 +01:00
|
|
|
__author__ = "John Goerzen"
|
2015-05-15 15:20:18 +02:00
|
|
|
__author_email__= "offlineimap-project@lists.alioth.debian.org"
|
2010-12-22 12:35:41 +01:00
|
|
|
__description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
|
2014-10-05 09:33:22 +02:00
|
|
|
__license__ = "Licensed under the GNU GPL v2 or any later version (with an OpenSSL exception)"
|
2014-06-01 20:32:57 +02:00
|
|
|
__bigcopyright__ = """%(__productname__)s %(__bigversion__)s
|
2011-10-26 16:47:21 +02:00
|
|
|
%(__license__)s""" % locals()
|
2012-01-07 13:15:44 +01:00
|
|
|
__homepage__ = "http://offlineimap.org"
|
2010-12-06 13:36:54 +01:00
|
|
|
|
2011-07-01 13:15:06 +02:00
|
|
|
banner = __bigcopyright__
|
2002-06-21 08:51:21 +02:00
|
|
|
|
2011-05-04 16:45:24 +02:00
|
|
|
from offlineimap.error import OfflineImapError
|
2013-07-21 21:00:23 +02:00
|
|
|
# put this last, so we don't run into circular dependencies using
|
2010-12-22 12:35:41 +01:00
|
|
|
# e.g. offlineimap.__version__.
|
|
|
|
from offlineimap.init import OfflineImap
|