mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-12 04:25:08 -05: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:
parent
a3878bf41d
commit
38748c59ca
@ -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) {
|
if (command != null) {
|
||||||
writeLine(command);
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user