max / goingson
| 1 | //! OAuth2 authentication module for email providers. |
| 2 | //! |
| 3 | //! Supports OAuth2 with PKCE for secure token exchange without client secrets. |
| 4 | //! Implements a generic provider system for multiple email services: |
| 5 | //! - Fastmail (JMAP API) |
| 6 | //! - Google/Gmail (Gmail API or IMAP via XOAUTH2) |
| 7 | //! - Microsoft/Outlook (Microsoft Graph or IMAP via XOAUTH2) |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | pub use OAuthCallbackServer; |
| 16 | pub use ; |
| 17 | pub use ; |
| 18 | pub use *; |
| 19 | pub use TokenManager; |
| 20 |