You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I process a lot of messages from several mailboxes. All of them are Microfost and connected via oAuth.
My flow looks like this: I check if there is a new message in the inbox folder, if so, I download the attachment to my system and process it. At the end, I mark the message as read and move it to the folder:
$mail->addFlag('seen');
$mail->move('archived');
Unfortunately, sometimes I have situations where the transfer to another folder itself takes a very long time, currently on one mailbox it takes about 40-45 seconds to transfer one email. On another mailbox the same process takes about 7 seconds. I assume that there is a similar number of messages on both mailboxes, but I don't know how to check it.
Does anyone of you have an idea where such a big difference in transferring messages could come from?
The text was updated successfully, but these errors were encountered:
Hi,
I am using the latest version, i.e. 5.5.0.
I process a lot of messages from several mailboxes. All of them are Microfost and connected via oAuth.
My flow looks like this: I check if there is a new message in the inbox folder, if so, I download the attachment to my system and process it. At the end, I mark the message as read and move it to the folder:
Unfortunately, sometimes I have situations where the transfer to another folder itself takes a very long time, currently on one mailbox it takes about 40-45 seconds to transfer one email. On another mailbox the same process takes about 7 seconds. I assume that there is a similar number of messages on both mailboxes, but I don't know how to check it.
Does anyone of you have an idea where such a big difference in transferring messages could come from?
The text was updated successfully, but these errors were encountered: