diff --git a/src/com/fsck/k9/mail/store/Pop3Store.java b/src/com/fsck/k9/mail/store/Pop3Store.java index 53a188ee7..44440e4cf 100644 --- a/src/com/fsck/k9/mail/store/Pop3Store.java +++ b/src/com/fsck/k9/mail/store/Pop3Store.java @@ -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) {