adapt broken pop3 server

This commit is contained in:
Koji Arai 2013-06-26 23:57:55 +09:00 committed by Jesse Vincent
parent 9dca630172
commit c185cf0f1f
1 changed files with 1 additions and 1 deletions

View File

@ -642,7 +642,7 @@ public class Pop3Store extends Store {
if (response.equals(".")) {
break;
}
String[] uidParts = response.split(" ");
String[] uidParts = response.split(" +");
// Ignore messages without a unique-id
if (uidParts.length >= 2) {