IMAP authentication methods.
public enum ImapAuthenticationMethod
Public Enum ImapAuthenticationMethod
public enum class ImapAuthenticationMethod
Name | Description |
---|
Auto | Choose automatically. |
Plain | RFC 2595 TLS plaintext authentication. |
DigestMD5 | RFC 2831 DIGEST-MD5 authentication. |
CramMD5 | RFC 2195 CRAM-MD5 authentication. |
Login | Login authentication. |
ClearText | Clear text USER/PASS login. |
Ntlm | NTLM authentication. (Only supported on Windows platforms.) |
External | External authentication. |
GssApi | GSSAPI/SSPI authentication (only Kerberos, NTLM and Negotiate (SPNEGO) are currently supported, and only on Windows platforms). |
OAuth20 | OAuth 2.0 authentication defined by https://developers.google.com/google-apps/gmail/xoauth2_protocol#imap_protocol_exchange |
Top