public Imap(string host, int port, bool useSsl, SslProtocols sslProtocols = SslProtocols.Default, bool validateCertificate = true)
{
ImapHost = host;
ImapPort = port;
UseSSL = useSsl;
SSLProtocols = sslProtocols;
ValidateCertificate = true; <------- how set it to FALSE
_folders = new FolderCollection();
}
Fellas, check this code. Are you sure that's it right? In Imap.cs
TIP: What if i want set validateCertificate to FALSE?
Nice project, so I registered to write about this bug.
{
ImapHost = host;
ImapPort = port;
UseSSL = useSsl;
SSLProtocols = sslProtocols;
ValidateCertificate = true; <------- how set it to FALSE
_folders = new FolderCollection();
}
Fellas, check this code. Are you sure that's it right? In Imap.cs
TIP: What if i want set validateCertificate to FALSE?
Nice project, so I registered to write about this bug.