Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7718837
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:15:56+00:00 2026-06-01T03:15:56+00:00

I am using this piece of code (the port used is 995) : Private

  • 0

I am using this piece of code (the port used is 995) :

Private Shared Function ConnectToPop3Server(ByVal pop3Obj As POP3, ByVal sslObj As SSL) As Boolean

        Utils.LogInformation(String.Format("Starting."))
        Try
            If My.Settings.UseSSL Then
                ' use SSL only if the configuration says so
                sslObj.CredentialVerification = CredentialVerification.None
                pop3Obj.Connect(My.Settings.EmailServer, My.Settings.IncomingPortSsl, sslObj.GetInterface())
            Else
                pop3Obj.Connect(My.Settings.EmailServer, My.Settings.IncomingPort)
            End If
            'Catch Easy Mail POP3 exception errors
        Catch POP3LicenseExcep As Quiksoft.EasyMail.POP3.LicenseException
            Utils.LogError("POP3 License Exception: " + POP3LicenseExcep.ToString()) : Return False
        Catch AuthExcep As Quiksoft.EasyMail.POP3.POP3AuthenticationException
            Utils.LogError("Authentication Exception: " + AuthExcep.ToString()) : Return False
        Catch ConnectExcep As Quiksoft.EasyMail.POP3.POP3ConnectionException
            Utils.LogError("Connection Exception: " + ConnectExcep.ToString()) : Return False
        Catch ProtocolExcep As Quiksoft.EasyMail.POP3.POP3ProtocolException
            Utils.LogError("Protocol Exception: " + ProtocolExcep.ToString()) : Return False
            'Catch parse exception errors
        Catch ParseLicenseExcep As Quiksoft.EasyMail.Parse.LicenseException
            Utils.LogError("Parse License Exception: " + ParseLicenseExcep.ToString()) : Return False
        Catch InputStreamExcep As Quiksoft.EasyMail.Parse.InputStreamException
            Utils.LogError("Input Stream Exception: " + InputStreamExcep.ToString()) : Return False
        Catch OutputStreamExcep As Quiksoft.EasyMail.Parse.OutputStreamException
            Utils.LogError("Output Stream Exception: " + OutputStreamExcep.ToString()) : Return False
        Catch ParseExcep As Quiksoft.EasyMail.Parse.ParsingException
            Utils.LogError("Parsing Exception: " + ParseExcep.ToString()) : Return False
            ' catch SMTP exceptions            
        Catch ex As Exception
            Utils.LogError("Exception: " + ex.Message + " - " + ex.StackTrace.ToString()) : Return False
        End Try
        Utils.LogInformation(String.Format("Finnished."))
        Return True

    End Function

which is basically following closely the samples provided with the library.
I am getting this when pop3Obj.Connect is called

Quiksoft.EasyMail.SSL.SSLConnectionException: Error receiving data from socket.  ---> Quiksoft.EasyMail.POP3.POP3ConnectionException: Error reading from stream. ---> Quiksoft.EasyMail.SSL.ᜀ: Unable to decrypt message.-2146893055
   at Quiksoft.EasyMail.SSL.Internal.ᜒ.᜕(Byte[] A_0, Int32 A_1, Int32 A_2, SocketFlags A_3)
   at Quiksoft.EasyMail.SSL.Internal.ᜒ.ᜣ(Byte[] A_0, Int32 A_1, SocketFlags A_2)
   at Quiksoft.EasyMail.Internal.᝭.ᜂ()
   --- End of inner exception stack trace ---
   at Quiksoft.EasyMail.Internal.᝭.ᜂ()
   at Quiksoft.EasyMail.Internal.᝭.ᜄ()
   at Quiksoft.EasyMail.SSL.Internal.ᜒ.ᜅ(String& A_0, Int32 A_1)
   --- End of inner exception stack trace ---
   at Quiksoft.EasyMail.SSL.Internal.ᜒ.ᜅ(String& A_0, Int32 A_1)
   at Quiksoft.EasyMail.POP3.POP3.Connect(String POP3Server, Int32 Port)
   at Quiksoft.EasyMail.POP3.POP3.Connect(String POP3Server, Int32 Port, Object SSLInterface)
   at Calico.InboxMonitorService.Service.ConnectToPop3Server(POP3 pop3Obj, SSL sslObj) in C:\DefaultCollection\AlertCustomizations\Calico\WorkOrdersMonitor\Service.vb:line 205

Anybody that has experience with this package and can pitch in with some advice?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T03:15:57+00:00Added an answer on June 1, 2026 at 3:15 am

    After finally getting in contact with Quiksoft it turned out that I have to update to the ver. 3.0.1.23 assemblies. All the Ssl connection errors disappeared.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using this piece of code from a fellow SO user: $(#rightSubMenu).mousemove(function(e){ console.log('executed'); var
I'm using this piece of code to try and save an image to the
I have this piece of code for render a popup, using f:ajax: <h:commandButton id
I am using std::unique_ptr in this piece of code which compiles and runs as
I am using iTextSharp in VB.net. I have this piece of code from java
I am using this piece of code to get string representing date yyyy-mm-dd from
In Android in litemitemclick I am using this piece of code: TextView tvofpostedText =
I am slightly confused as I am using this piece of code; NSArray *dirContents
Hi i am using this piece of code to center image in jquery mobile,
I am using this piece of code to create a temporary file: String tmpDirectoryOp

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.