I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit d328e787 authored by zzz's avatar zzz
Browse files

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

parent 1bcb9b24
No related branches found
No related tags found
No related merge requests found
...@@ -31,11 +31,11 @@ class BackgroundChecker { ...@@ -31,11 +31,11 @@ class BackgroundChecker {
private static final int DEFAULT_CHECK_MINUTES = 3*60; private static final int DEFAULT_CHECK_MINUTES = 3*60;
private static final int MIN_CHECK_MINUTES = 15; private static final int MIN_CHECK_MINUTES = 15;
// short for testing // 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 // 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) { public BackgroundChecker(POP3MailBox mailbox) {
this.mailbox = mailbox; this.mailbox = mailbox;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment