From fc55c54db0e64dc5a271ba56844dac1b3ac8e056 Mon Sep 17 00:00:00 2001 From: Daniel Applebaum Date: Mon, 28 Jun 2010 02:51:47 +0000 Subject: [PATCH] Fixes Issue 1875 Change initial value for maximum message age to -1 (unlimited) instead of erroneous 10. --- src/com/fsck/k9/Account.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/Account.java b/src/com/fsck/k9/Account.java index e2082a743..9774206eb 100644 --- a/src/com/fsck/k9/Account.java +++ b/src/com/fsck/k9/Account.java @@ -147,7 +147,7 @@ public class Account implements BaseAccount mLedColor = mChipColor; goToUnreadMessageSearch = false; subscribedFoldersOnly = false; - maximumPolledMessageAge = 10; + maximumPolledMessageAge = -1; mQuotePrefix = DEFAULT_QUOTE_PREFIX; searchableFolders = Searchable.ALL;