a6c5e96eb5
I am forcing to use the bundled. I will modify this library to make it similar to imaplib2 for python3
11 lines
312 B
Python
11 lines
312 B
Python
from offlineimap.bundled_imaplib2 import *
|
|
import offlineimap.bundled_imaplib2 as imaplib
|
|
|
|
DESC = "bundled"
|
|
|
|
# Upstream won't expose those literals to avoid erasing them with "import *" in
|
|
# case they exist.
|
|
__version__ = imaplib.__version__
|
|
__release__ = imaplib.__release__
|
|
__revision__ = imaplib.__revision__
|