Replies: 1 comment 1 reply
-
Are you downloading every single message every single day? You probably hit some sort of throttling situation that is meant to defend against DoS attacks. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I'am having trouble reading messages via
await folder.GetMessageAsync(id, _token);
since Sunday/Monday and each day is getting worse.I am crawling a mailbox with currently 2200 mails:
After that I am iterating over the list and call the
GetMessageAsync
- until last weekend this process took no longer than 60 seconds.But then things getting weird, because now I often get an exception:
As you can see the
mailClient
timeout is set to 120 seconds - which worked fine until the weekend.Now the same logic takes between sometimes 10minutes up to almost 50minutes.
I had the chance to debug the mailbox locally and it is brutally slow.
Opening the folder and searchAll does take a fraction of a second, but one
getMessageAsync
call with an uid took 26.698ms.Are there any news out where I missed something?
Beta Was this translation helpful? Give feedback.
All reactions