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 want to implement email threading for replies and forwards, but including the original message in each thread increases the content size, causing delays in sending when the body becomes too large. How can I optimize this to improve sending speed?
following lines in the file "lib/message-handler.js" taking some time (screenshot attached below)
Sorry that this was never replied to. But very large messages taking longer to store kind of makes sense? I'm not entirely sure what your expectation is.
@arafat-khan-mindruby it should be an expected behaviour (of example look at Gmail). If you reply/forward the replied/forwarded emails content is to be transferred and if you have a lof of reply's then the body will naturally grow and thus the time it takes to send the message.
Please let me know if you need any further assistance. Otherwise I'll close the issue as resolved
I want to implement email threading for replies and forwards, but including the original message in each thread increases the content size, causing delays in sending when the body becomes too large. How can I optimize this to improve sending speed?
following lines in the file "lib/message-handler.js" taking some time (screenshot attached below)
"this.indexer.storeNodeBodies(maildata, mimeTree, err => {"
all the queries which are using for insert or update data is also taking some time if the body content is large.
The text was updated successfully, but these errors were encountered: