When i am fetching emails from gmail server, i am getting GMailMessageId and GmailThread value is NULL. So can you please share the reason of this.
Thanks a lot.
if (client.Connect())
{
var credentials = new OAuth2Credentials(EmailAddress, AccessToken);
if (client.Login(credentials))
{
ImapX.Message[] messages = client.Folders.Inbox.Search(idOfMsg, ImapX.Enums.MessageFetchMode.GMailExtendedData);
}
}
This worked for gmail, but not for Hotmail. Can you please help me out regarding this issue.??// Request basic information and GMail mesage id, labels and thread id
client.Behavior.MessageFetchMode = MessageFetchMode.Basic | MessageFetchMode.GMailExtendedData;
Greets,GMailExtendedData
speaks for itself, this is a feature only avalable for GMail. Hotmail does not provide any extensions to return the thread ids for messages.Hi,
can you provide a more extended log?
To solve the issue I need to see the lines before the server returned `IMAPX15 BAD "header-list" list closing character missing.`
Greets,
Pavel
_client = new ImapClient(_mailServer, 143 SslProtocols.Tls, false);
_client.Connect();
if (_client.IsConnected)
{
_client.Login(_login, _password);
}
On execution of _client.Login it throws "The selected authentication mechanism is not supported"?Ruifeng has uploaded a patch.
Description:
please compare the file with the origin.
Ruifeng has uploaded a patch.
Description:
public static string ToEml(this MailMessage mailMessage)
{
......
else
{
var eml = File.ReadAllText(tmpPath);
// File.Delete(eml); // Bug Here~! Wrong path.
File.Delete(tmpPath); // Fixed.
return eml;
}
}
catch (Exception)
{
throw;
}
finally
{
if (watcher != null)
watcher.EnableRaisingEvents = false;
}
}
pavel_azanov has applied patch #17202.
Comment:
Hi,
thank you for the fix! However this has already been fixed.
http://imapx.codeplex.com/SourceControl/changeset/36116
In case of source code you better refer to the latest code from the repository, not the downloads section.
Greets,
Pavel