I have an application that fetches mails from Exchange 2010. I managed to get this all working with Exchange 2010, but now I am trying to get this working with Exchange 2003. Here is the code that connects to Exchange:
Dim ImapClient As New Aspose.Email.Imap.ImapClient()
ImapClient.Host = AppSettings.MailHostOrIP
ImapClient.Password = AppSettings.Pop3Password
ImapClient.Username = AppSettings.Pop3Name
ImapClient.Port = 143
ImapClient.Timeout = 6000
ImapClient.Connect(True)
The problem here is that it gets to the Connect part and goes no further. It doesn't come up with an error, doesn't come up with a timeout problem(it should come up with a connection problem within 6 seconds with the time out that I have set).
The IMAP protocol is running on the Exchange. The Security is set to plain text.
Please let me know what I am doing wrong here.