debug list of mailboxes

This commit is contained in:
Antonio J. Delgado 2025-03-26 19:27:48 +02:00
parent 07d4e85495
commit c5cecd226d

View file

@ -63,6 +63,10 @@ class BackupImap:
def _process_mailbox(self, mailbox):
self._log.debug("Searching for all mailboxes in mailbox '%s'...", mailbox)
list_response, list_data = self.imap.list(f"\"{mailbox}\"", '*')
self._log.debug(
"Mailboxes: %s",
list_data
)
if list_response == 'OK':
for subdir in list_data:
if subdir: