-
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
Adding support for Gmail extensions #224
Comments
I'm not against adding these in, probably behind a trait of some kind so that users have to explicitly say they want access to those methods. Or maybe better yet, through a impl Session {
fn gmail(&mut self) -> Option<GmailClientExtensions<'_>> {}
} which returns |
Okay, cool. I'll give it a shot. ^_^ |
Well, that was easy -- it turns out that support for Gmail labels (which was the only thing I care about) was added to Unfortunately, they haven't made a release yet that includes those changes. In the meantime, I forked You'll notice I deleted |
@djc Any chance we could have a new |
I just published imap-proto 0.16 to crates.io. |
Thank, djc! I made a pull request for this: #225 |
Gmail added a few non-standard extensions to the IMAP protocol, for handling labels and a few other things.
What's this project's stance on supporting non-standard extensions?
The text was updated successfully, but these errors were encountered: