Does aspose support lotus domino

hi

we using Ysoft's printing manger app "SAFEQ" and "DOMINO LOTUS" as mail servers

SAFEQ using ASPOSE mail services

I configured the use of mobile printing and I get this error:

Error occurred during processing email messages, recovery attempt will be made every 1 seconds. Error: System.AggregateException: One or more errors occurred. ---> Aspose.Email.Imap.ImapException: 005 NO SEARCH Database is not full text indexed

what does this error means ?

does ASPOSE support DOMINO LOTUS ?

tnx tziki

tnxttt

Hi tziki,

Thank you for writing to Aspose support team.

Could you please try the following code sample for connecting to the server directly? Our clients have been using the API for connecting to the same which means the API works with the standard IMAP protocols exposed by these servers. Please let us know your feedback then.

//Create an imapclient with host, user and password
ImapClient client = new ImapClient(“localhost”, “user”, “password”);

// Select the inbox folder
client.SelectFolder(ImapFolderInfo.InBox);

// Get the message info collection
ImapMessageInfoCollection list = client.ListMessages();