1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

* Fix for "Consistently getting 'Connection Error' messages when getting new mail on a POP3 account"

Patch for Issue 67 from baolongnt++.
This commit is contained in:
Jesse Vincent 2008-11-06 06:55:29 +00:00
parent a3878bf41d
commit 38748c59ca

View File

@ -296,6 +296,11 @@ public class Pop3Store extends Store {
* being friendly. * being friendly.
*/ */
} }
closeIO();
}
private void closeIO() {
try { try {
mIn.close(); mIn.close();
} catch (Exception e) { } catch (Exception e) {
@ -785,19 +790,25 @@ public class Pop3Store extends Store {
} }
private String executeSimpleCommand(String command) throws IOException, MessagingException { private String executeSimpleCommand(String command) throws IOException, MessagingException {
open(OpenMode.READ_WRITE); try {
open(OpenMode.READ_WRITE);
if (command != null) {
writeLine(command); if (command != null) {
writeLine(command);
}
String response = readLine();
if (response.length() > 1 && response.charAt(0) == '-') {
throw new MessagingException(response);
}
return response;
} }
catch (IOException e) {
String response = readLine(); closeIO();
throw e;
if (response.length() > 1 && response.charAt(0) == '-') {
throw new MessagingException(response);
} }
return response;
} }
@Override @Override