Author |
|
kkumsa Newbie
Joined: 20 February 2007 Location: Korea, South
Online Status: Offline Posts: 2
|
Posted: 20 February 2007 at 10:42pm | IP Logged
|
|
|
Hi there, James from Korea.
There some error when retrieving New Messages from Exchange Server.
When I call new messages, I check the uid log database. Because everytime I save the messages I also save the uid of the messages into Sql db.
However, some messages have same uid??? Is it possible? In fact, when I save uid, some characters such as + - are removed. Does it matter?
For example, Original uid is AAQeUrAAAAg+4aetxTaxw+092vjh+Yec and change it to AAQeUrAAAAg4aetxTaxw092vjhYec .
Do you think it makes this problem?
Please help.
Thank you.
|
Back to Top |
|
|
kkumsa Newbie
Joined: 20 February 2007 Location: Korea, South
Online Status: Offline Posts: 2
|
Posted: 20 February 2007 at 11:00pm | IP Logged
|
|
|
In addition,
Sometimes, it takes so long time to retrive messages from Exhange Server, about 5~10 minutes. During the time, the web server cannot do anything, all stops. From other pop3 server, public mail server, is OK.
How do you think?
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 21 February 2007 at 9:08am | IP Logged
|
|
|
We're not sure we clearly understood you. Could you please describe on which stage (after or before which operation in your source code) + - chars are removed? Actually, different messages in the same IMAP folder or POP3 account cannot have the same UIDs.
To let us investigate the issue, please enable logging POP3 session into a file, reproduce the issue and provide us with the log file for examination. You can enable logging as follows (VB6 syntax):
Code:
Dim Mailer
Set Mailer = CreateObject("MailBee.POP3")
Mailer.EnableLogging = True
Mailer.LogFilePath = "C:\my_log.txt"
Mailer.ClearLog |
|
|
Please make sure the application has permission to write into the specified location.
It would be also very helpful if you provide us with the source code of your application and a test account on your mail server. Thus, we would be able to investigate why retrieving messages takes 5~10 minutes and the issue with equal UIDs.
Please use our request support form for this purpose.
Best regards,
Andrew
|
Back to Top |
|
|