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
I try to mark a mail as read (Flag: seen) by uid and it does not work. This is what I tried:
await imap_client.store(uid, '+FLAGS', '\\Seen')
await imap_client.store(uid, '+FLAGS', '\Seen')
await imap_client.store(uid, '+FLAGS', 'Seen')
await imap_client.store(uid, '+FLAGS', '\\Seen', true) #with all other variations of Seen from above
The response looks good, but it does not change anything: The flags stay empty
Response(result='OK', lines=[b'STORE completed'])
Any idea if this is a bug or wrong syntax by me?
The text was updated successfully, but these errors were encountered:
pseisam
changed the title
Marking a mail as seen (=seen) is not working
Marking a mail as read (=seen) is not working
Nov 14, 2024
I try to mark a mail as read (Flag: seen) by uid and it does not work. This is what I tried:
The response looks good, but it does not change anything: The flags stay empty
Any idea if this is a bug or wrong syntax by me?
The text was updated successfully, but these errors were encountered: