I have very simple code that is trying to open a socket using JavaMail on Android, like this:
public boolean connect() {
try {
store_ = session_.getStore("imap");
store_.connect(email_.host, email_.user, email_.pass);
folder_ = store_.getDefaultFolder();
folder_ = folder_.getFolder("inbox");
folder_.open(Folder.READ_ONLY);
}
catch(Exception e) {
disconnect();
return false;
}
return true;
}
public void disconnect() {
if (folder_ != null) {
try {
folder_.close(false);
}
catch(Exception e) {
}
folder_ = null;
}
if (store_ != null) {
try {
store_.close();
}
catch(Exception e) {
}
store_ = null;
}
}
It works fine for a IMAP server that doesn't require SSL. Otherwhise, the app just blocks. No matter the try/catch. Any idea? Note that is ofcourse working as soon as I mention "imaps" instead of "imap" but I don't want that my app blocks in any case.
