mirror of
https://git.code.sf.net/p/archivemail/code
synced 2024-12-22 07:42:55 +00:00
IMAP: if selecting a mailbox fails with both the original path name and with
replaced path delimiters, report failure for the original path.
This commit is contained in:
parent
8596d68092
commit
d5cb3dad61
1 changed files with 2 additions and 2 deletions
|
@ -1364,8 +1364,8 @@ def _archive_imap(mailbox_name, final_archive_name):
|
|||
if result == 'OK':
|
||||
vprint("successfully selected imap folder %s" % imap_folder)
|
||||
else:
|
||||
unexpected_error("cannot select imap folder; "
|
||||
"server says '%s'" % response[0])
|
||||
# Report original mailbox path.
|
||||
unexpected_error(errmsg)
|
||||
# response is e.g. ['1016'] for 1016 messages in folder
|
||||
total_msg_count = int(response[0])
|
||||
vprint("folder has %d message(s)" % total_msg_count)
|
||||
|
|
Loading…
Reference in a new issue