Merge pull request #113 from hubearth/master

Allow filtering of folders with spaces
This commit is contained in:
Rodolfo García Peñas (kix)
2022-03-25 11:39:48 +01:00
committed by GitHub

View File

@ -717,6 +717,9 @@ class IMAPRepository(BaseRepository):
try:
for foldername in self.folderincludes:
try:
# Folder names with spaces requires quotes
if ' ' in foldername:
foldername = '"' + foldername + '"'
imapobj.select(imaputil.utf8_IMAP(foldername),
readonly=True)
except OfflineImapError as exc: