R
Richard.Kelters
Guest
OpenPop only reads mail through pop3 for IMAP you'll need to find something else. When reading mail from an exchange server you'll need to implement a certificate validation which is done in c# with a callback which is not supported in OpenEdge. I've edited the Pop3Client.cs and added the following method (see below). You can recompile the .NET control with SharpDevelop (http://www.icsharpcode.net/opensource/sd/). Richard /// summary /// Method for bypassing certificate check needed for single thread OpenEdge application private static bool certificateValidator(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslpolicyerrors) { return true; }
Continue reading...
Continue reading...