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
fix: handle Proton Bridge IMAP response format in _batch_fetch_headers (#112)
Proton Bridge returns UID in a separate item after header data:
- [i] = b'N FETCH (BODY[HEADER] {size}'
- [i+1] = bytearray(headers)
- [i+2] = b' UID xxx)'
This adds a fallback to check for UID in data[i+2] when not found in data[i].
Related to #87 (Proton Mail Bridge compatibility)
0 commit comments