You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
res, data=awaitimap_client.select()
print('there is %s messages INBOX'%data[0])
which would be the same behaviour of imaplib. But when I execute this code I get b'FLAGS (\\Answered \\Flagged \\Deleted \\Seen \\Draft \\Forwarded $Junk $la' instead of the number of emails. I get a list that looks like this:
If I execute a select() with the python built-in imaplib with the same credentials, then I get expected behaviour. I checked different imap servers and this always happens. Why is that?
The text was updated successfully, but these errors were encountered:
The example in the
README.rs
file does this:which would be the same behaviour of
imaplib
. But when I execute this code I getb'FLAGS (\\Answered \\Flagged \\Deleted \\Seen \\Draft \\Forwarded $Junk $la'
instead of the number of emails. I get a list that looks like this:If I execute a
select()
with the python built-inimaplib
with the same credentials, then I get expected behaviour. I checked different imap servers and this always happens. Why is that?The text was updated successfully, but these errors were encountered: