1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-25 09:08:49 -05:00

Fixes Issue 790

Tolerate malformed UIDL response.  Thanks to @bengnc for thorough
analysis in Issue 790.
This commit is contained in:
Daniel Applebaum 2010-03-18 03:43:39 +00:00
parent 76f33ba5ff
commit fa73f71e95

View File

@ -513,6 +513,8 @@ public class Pop3Store extends Store
break;
}
String[] uidParts = response.split(" ");
if (uidParts.length >= 2)
{
Integer msgNum = Integer.valueOf(uidParts[0]);
String msgUid = uidParts[1];
if (msgNum >= start && msgNum <= end)
@ -527,6 +529,7 @@ public class Pop3Store extends Store
}
}
}
}
private void indexUids(ArrayList<String> uids)
throws MessagingException, IOException