-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for UIDPLUS responses #131
Comments
dignifiedquire
changed the title
Add support for UIDPLUS repsonses
Add support for UIDPLUS responses
Aug 21, 2019
It looks like we need support for this in |
Well, that was easy. Mostly. |
bitfehler
added a commit
to bitfehler/rust-imap
that referenced
this issue
Jul 6, 2022
If the `UIDPLUS` extension is supported, the server will reply to `APPEND` commands with the UID of the new message. This can even be a list of UIDs if the `MULTIAPPEND` extension is also supported. Make this information available to the user as the result of an `AppendCmd`. The added doc strings have links to the relevant RFCs. Related to jonhoo#131.
bitfehler
added a commit
to bitfehler/rust-imap
that referenced
this issue
Jul 14, 2022
If the `UIDPLUS` extension is supported, the server will reply to `APPEND` commands with the UID of the new message. This can even be a list of UIDs if the `MULTIAPPEND` extension is also supported. Make this information available to the user as the result of an `AppendCmd`. The added doc strings have links to the relevant RFCs. Related to jonhoo#131.
bitfehler
added a commit
to bitfehler/rust-imap
that referenced
this issue
Aug 2, 2022
If the `UIDPLUS` extension is supported, the server will reply to `APPEND` commands with the UID of the new message. This can even be a list of UIDs if the `MULTIAPPEND` extension is also supported. Make this information available to the user as the result of an `AppendCmd`. The added doc strings have links to the relevant RFCs. Related to jonhoo#131.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When moving or copying mails, the
UIDPLUS
extension returns the destination ids. Currently this information is not exposed, it would be great to make this available.Reference: https://tools.ietf.org/html/rfc4315
The text was updated successfully, but these errors were encountered: