* SusiMail: Extend times on background checker (still disabled by default)

This commit is contained in:
zzz
2014-06-07 13:17:40 +00:00
parent 1bcb9b24b6
commit d328e78727

View File

@@ -31,11 +31,11 @@ class BackgroundChecker {
private static final int DEFAULT_CHECK_MINUTES = 3*60;
private static final int MIN_CHECK_MINUTES = 15;
// short for testing
//private final long MIN_IDLE = 30*60*1000;
private static final long MIN_IDLE = 10*60*1000;
//private static final long MIN_IDLE = 10*60*1000;
private final long MIN_IDLE = 30*60*1000;
// short for testing
//private final long MIN_SINCE = 60*60*1000;
private static final long MIN_SINCE = 10*60*1000;
//private static final long MIN_SINCE = 10*60*1000;
private final long MIN_SINCE = 60*60*1000;
public BackgroundChecker(POP3MailBox mailbox) {
this.mailbox = mailbox;