1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# -*- coding: utf-8 -*-
# docs/COPYING 2a + DRY: https://github.com/getmail6/getmail6
# Please refer to the git history regarding who changed what and when in this file.
'''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-2025 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
__version__ = '6.19.10'
__license__ = 'GPL-2.0'
__py_required__ = '3.7'
__py_required_hex__ = 0x03070000
if sys.hexversion < __py_required_hex__:
raise ImportError('getmail version %s requires Python version %s '
'or later'%(__version__,__py_required__))
__all__ = [
'baseclasses',
'constants',
'destinations',
'exceptions',
'filters',
'imap_utf7',
'logging',
'message',
'retrievers',
'utilities',
]
|