TLS 1.2 Support for IMAP and Exchange WebServices

Hi There,

We are making updates to our infrastructure and will no longer support TLS 1.0 and TLS 1.1 . I was wondering if someone could verify if Aspose.Email v18.5 supports TLS 1.2 for both IMAP and Exchange WebServices?

Thanks,
Joash

@ideaPointEngineering,

Our .NET version of components do not implement security level. We use classes of the .NET Framework to implement SSL/TLS security. System.Net.Security.SslStream is used to provide secured connection. So all security issues depend on Microsoft .NET framework. When a user uses latest version of the .NET Framework, it provides the latest version of SSL implementation in the library. You have to install system updates to avoid security bugs. Also security depends on server configuration. Server must support latest SSL versions. To set SSL version for client you may use following code:

System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

Please note: Server and client must support the same versions of SSL protocol.

Thank you so much. You the man.