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 have attempted to download a couple of thousands of emails I started wondering about speed limitations of imapbox. After a brief investigation, I have discovered that we are fetching only one message at the time.
@polo2ro did you tried to download emails in bulk? I wonder if that solution could be faster.
The message_set options to commands below is a string specifying one or more messages to be acted upon. It may be a simple message number ('1'), a range of message numbers ('2:4'), or a group of non-contiguous ranges separated by commas ('1:3,6:9'). A range can contain an asterisk to indicate an infinite upper bound ('3:*').
The text was updated successfully, but these errors were encountered:
Bulk fetch of emails will not speed up the whole process, because most of the time is consumed by converting to PDF and saving to the disk.
And a bulk fetch of emails could break the limits of IMAP servers configured to not deliver too much data in one response.
I'm thinking about implementing a threaded work process doing the fetch in one thread and the processing of them to another one.
I have attempted to download a couple of thousands of emails I started wondering about speed limitations of
imapbox
. After a brief investigation, I have discovered that we are fetching only one message at the time.@polo2ro did you tried to download emails in bulk? I wonder if that solution could be faster.
See the documentation:
The text was updated successfully, but these errors were encountered: