void FetchEmailMessagesFromIMAPServer()
{
const System::String host = u"imap.163.com";
const int32_t port = 993;
const System::String username = u"test111111111@163.com";
const System::String password = u"xxxxxxxxxxxx";
System::SharedPtr<ImapClient> client = System::MakeObject<ImapClient>(host, port, username, password);
try
{
client->SelectFolder(ImapFolderInfo::InBox); // crash this line
client->Dispose();
}
catch (System::Exception& ex)
{
System::Console::Write(System::Environment::get_NewLine() + System::ObjectExt::ToString(ex));
}
}
int main()
{
FetchEmailMessagesFromIMAPServer();
return 0;
}
image.png (115.2 KB)
I have downloaded the Aspose.Email.Cpp (Aspose.Email.CPP for C++ 24.12.1) and when I’m trying to build and run the provided example, the program crash.
Through my testing, I’ve found that the program doesn’t crash when the username and password are correct. However, it crashes when incorrect credentials are entered. This behavior is confusing, and I would appreciate your assistance in resolving this issue.
Thanks