Package: offlineimap3 / 0.0~git20210225.1e7ef9e+dfsg-4

Metadata

Package Version Patches format
offlineimap3 0.0~git20210225.1e7ef9e+dfsg-4 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
Revert implement Happy Eyeballs.patch | (download)

offlineimap/imaplibutil.py | 10 1 + 9 - 0 !
requirements.txt | 1 0 + 1 - 0 !
2 files changed, 1 insertion(+), 10 deletions(-)

 revert "implement happy eyeballs"
This functionality relies on the `rfc6555` Python module, which is not
available on Debian.

Ported from offlineimap.
 
Do not use the Internet to fetch DTD.patch | (download)

docs/Makefile | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 do not use the internet to fetch dtd

Use '--nonet' flag in order to prevent xsltproc from using the Internet
to fetch DTDs, entities or documents.

Ported from offlineimap.

0001 Revert Use system sslcacertfile by default.patch | (download)

offlineimap/repository/IMAP.py | 19 7 + 12 - 0 !
1 file changed, 7 insertions(+), 12 deletions(-)

 [patch] revert "use system sslcacertfile by default"

This reverts commit a4863b2f04adf25b9989bafbb9df21ea8b98a674.

0001 BUG Right format for password from Curses.patch | (download)

offlineimap/imapserver.py | 4 2 + 2 - 0 !
offlineimap/ui/Curses.py | 4 4 + 0 - 0 !
2 files changed, 6 insertions(+), 2 deletions(-)

 [patch] bug: right format for password from curses

Reading the password from Curses Blinkenlights returns a bytes objects
instead an utf-8 string.

This patch will decode if bytes is provided.

Closes: #49

BUG: Exception with debug logs

When ui is set to 'Curses Blinkenlights' and debug logs are enabled,
we get an exception with 'embedded null character'.

Remove the NULL from the log, keeping the log message same as before.

Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>

0001 BUG Gmail FETCH error with synclabels enabled.patch | (download)

offlineimap/folder/Gmail.py | 10 7 + 3 - 0 !
1 file changed, 7 insertions(+), 3 deletions(-)

 [patch] bug: gmail fetch error with synclabels enabled

If synclabels is enabled then offlineimap is sending '1:*' to imaplib2,
and imaplib2 while creating the FETCH command is quoting the sequence
and the command becomes:
b"JFFJ10 FETCH '1:*' (FLAGS X-GM-LABELS UID)\r\n"

Remove the single-quotes to prevent that and also consider the response
as bytes.

Closes: #52

Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>