2010-12-22 12:35:41 +01:00
|
|
|
__all__ = ['OfflineImap']
|
|
|
|
|
|
|
|
__productname__ = 'OfflineIMAP'
|
2011-09-29 11:20:57 +02:00
|
|
|
__version__ = "6.4.0"
|
2011-07-01 13:15:06 +02:00
|
|
|
__copyright__ = "Copyright 2002-2011 John Goerzen & contributors"
|
2010-12-22 12:35:41 +01:00
|
|
|
__author__ = "John Goerzen"
|
|
|
|
__author_email__= "john@complete.org"
|
|
|
|
__description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support"
|
2011-07-01 13:15:06 +02:00
|
|
|
__license__ = "Licensed under the GNU GPL v2+ (v2 or any later version)"
|
2010-12-22 12:35:41 +01:00
|
|
|
__bigcopyright__ = """%(__productname__)s %(__version__)s
|
2011-07-01 13:15:06 +02:00
|
|
|
%(__copyright__)s.
|
|
|
|
%(__license__)s.
|
|
|
|
""" % locals()
|
|
|
|
__homepage__ = "http://github.com/nicolas33/offlineimap"
|
2010-12-06 13:36:54 +01:00
|
|
|
|
2003-07-25 03:58:20 +02:00
|
|
|
|
2011-07-01 13:15:06 +02:00
|
|
|
banner = __bigcopyright__
|
2002-06-21 08:51:21 +02:00
|
|
|
|
2010-12-22 12:35:41 +01:00
|
|
|
|
2011-05-04 16:45:24 +02:00
|
|
|
from offlineimap.error import OfflineImapError
|
2010-12-22 12:35:41 +01:00
|
|
|
# put this last, so we don't run into circular dependencies using
|
|
|
|
# e.g. offlineimap.__version__.
|
|
|
|
from offlineimap.init import OfflineImap
|