I am using javamail to make IMAP connections to gmail. Everything is working going fine. I just want to prevent misusing server memory.
My question is: What does happen when I close the store? [store.close();] does it close all open folders? Do you have to close all folders?
There are tremendous speed benefits if I leave a particular folder open.
from the Javamail API Documentation
"Close this service and terminate its connection. A close ConnectionEvent is delivered to any ConnectionListeners. Any Messaging components (Folders, Messages, etc.) belonging to this service are invalid after this service is closed. Note that the service is closed even if this method terminates abnormally by throwing a MessagingException. "
So you can leave the folder open but if you try a second time folder.open, you will have an exception, in this must use:
if(!folder.isOpen()){folder.open();}
i hope that help you
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With