Does System.Net.Mail.SmtpClient support CRAM-MD5 authentication?
Asked Answered
A

1

6

Does System.Net.Mail.SmtpClient support CRAM-MD5 authentication, and if so, do I need to do anything to enable it?

MSDN appears to be silent on the matter.

Asteria answered 12/7, 2010 at 9:40 Comment(0)
S
2

No, it's not supported (in .NET Framework 4.5.2).

Digging through the reference source of SmtpClient reveals that System.Net.Mail.SmtpConnection is used to create the SMTP connection. Its source shows that (only) the following authentication modes are supported:

  • LOGIN
  • NTLM
  • GSSAPI
  • WDIGEST
Segmental answered 16/4, 2015 at 15:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.