Author |
|
lotfi.mira Newbie
Joined: 16 September 2011 Location: Canada
Online Status: Offline Posts: 2
|
Posted: 16 September 2011 at 10:03am | IP Logged
|
|
|
Hello,
when I fetch messages from my Imap server with mailbee, the receivedDate is always 1 hour ahead the real time.
However Thunderbird displays the correct time.
The server and I are located in the same timezone.
Bellow is a sample of my code. Did I forgot to do something?
using (MailBee.ImapMail.Imap imap = Connect())
{
try
{
if (imap.Login(_imapConfig.User, _imapConfig.Password))
{
// open the Inbox
imap.SelectFolder("Inbox");
// get unread messages
MessageIndexCollection msgcol = imap.Search(false, "UNSEEN", null);
// examine message list
foreach (int index in msgcol)
{
// this will set the message as read automatically
MailMessage msg = imap.DownloadEntireMessage(index, false);
L.Mira
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 18 September 2011 at 11:49am | IP Logged
|
|
|
Please enable MailBee logging with Imap.Log property and send us the log file and the e-mail in question. You can save the e-mail into a file using MailMessage.SaveMessage method.
You can submit all the files using our HelpDesk system.
Regards,
Alex
|
Back to Top |
|
|
lotfi.mira Newbie
Joined: 16 September 2011 Location: Canada
Online Status: Offline Posts: 2
|
Posted: 19 September 2011 at 10:15am | IP Logged
|
|
|
I posted the files to the help desk.
Hope this helps in finding a solution.
Thanks
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 19 September 2011 at 1:12pm | IP Logged
|
|
|
Outcome: fixed with updating to the latest version.
Regards,
Alex
|
Back to Top |
|
|