docker-offlineimap/offlineimap/folder
Rodolfo García Peñas (kix) a311faf183 IMAP search now works fine
This patch converts the search results from bytes to strings

I add a bit comment about it here:

    In Py2, with IMAP, imaplib2 returned a list of one element string.
      ['1, 2, 3, ...'] -> in Py3 is [b'1 2 3,...']
    In Py2, with Davmail, imaplib2 returned a list of strings.
      ['1', '2', '3', ...] -> in Py3 should be [b'1', b'2', b'3',...]

    In my tests with Py3, I get a list with one element: [b'1 2 3 ...']
    Then I convert the values to string and I get ['1 2 3 ...']

    With Davmail, it should be [b'1', b'2', b'3',...]
    When I convert the values to string, I get ['1', '2', '3',...]
2020-11-08 15:47:51 +01:00
..
__init__.py __init__.py added docstrings 2020-11-01 13:12:03 +01:00
Base.py Base.py added docstrings 2020-11-01 13:11:52 +01:00
Gmail.py Renamed variable already used 2020-10-10 17:24:18 +02:00
GmailMaildir.py Removed mutable arguments 2020-10-10 15:00:34 +02:00
IMAP.py IMAP search now works fine 2020-11-08 15:47:51 +01:00
LocalStatus.py Removed mutable arguments 2020-10-10 15:00:34 +02:00
LocalStatusSQLite.py Removed mutable arguments 2020-10-10 15:00:34 +02:00
Maildir.py Remove email.Parse 2020-10-12 12:40:54 +02:00
UIDMaps.py Changed the doxygen in change_message_uid 2020-10-11 23:57:17 +02:00