mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Sync with date for Yahoo/AOL
This commit is contained in:
parent
c52e8ac315
commit
4af49db8ad
2 changed files with 11 additions and 0 deletions
|
@ -3287,6 +3287,9 @@ class Core {
|
|||
boolean use_modseq = prefs.getBoolean("use_modseq", true);
|
||||
boolean perform_expunge = prefs.getBoolean("perform_expunge", true);
|
||||
|
||||
if (account.isYahoo() || account.isAol())
|
||||
sync_nodate = false;
|
||||
|
||||
if (account.isZoho()) {
|
||||
sync_unseen = false;
|
||||
sync_flagged = false;
|
||||
|
|
|
@ -184,6 +184,14 @@ public class EntityAccount extends EntityOrder implements Serializable {
|
|||
return (host != null && host.toLowerCase(Locale.ROOT).startsWith("imap.zoho."));
|
||||
}
|
||||
|
||||
boolean isYahoo() {
|
||||
return "imap.mail.yahoo.com".equalsIgnoreCase(host);
|
||||
}
|
||||
|
||||
boolean isAol() {
|
||||
return "imap.aol.com".equalsIgnoreCase(host);
|
||||
}
|
||||
|
||||
boolean isTransient(Context context) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean enabled = prefs.getBoolean("enabled", true);
|
||||
|
|
Loading…
Reference in a new issue