#!/usr/bin/env python2.3
'''A reliable mail-retriever toolkit.
getmail is a reliable, modular, extensible mail retriever with support for
simple and multidrop POP3 mailboxes, multidrop SDPS mailboxes, simple and
multidrop IMAP mailboxes. Also supports POP3- and IMAP-over-SSL, message
filtering, and other features.
getmail is Copyright (C) 1998-2007 Charles Cazabon. All rights reserved.
Distributed under the terms of the GNU General Public License version 2 (only).
You should have received a copy of the license in the file COPYING.
'''
import sys
if sys.hexversion < 0x2030300:
raise ImportError('getmail version 4 requires Python version 2.3.3'
' or later')
__version__ = '4.7.7'
__all__ = [
'baseclasses',
'constants',
'destinations',
'exceptions',
'filters',
'logging',
'message',
'retrievers',
'utilities',
]
syntax highlighted by Code2HTML, v. 0.9.1