Add web.de/Unbekannt as unified inbox

This commit is contained in:
M66B 2022-06-09 10:23:24 +02:00
parent 6b5de123e8
commit d6b8ebb31d
1 changed files with 6 additions and 1 deletions

View File

@ -298,8 +298,13 @@ public class EntityFolder extends EntityOrder implements Serializable {
}
void setSpecials(EntityAccount account) {
if ("imap.web.de".equals(account.host) && "Unbekannt".equals(name))
if ("imap.web.de".equals(account.host) && "Unbekannt".equals(name)) {
// In den Ordner Unbekannt werden E-Mails einsortiert,
// die nicht als Spam erkannt werden
// und deren Absender nicht in Ihrem Adressbuch oder auf Ihrer Erwünschtliste stehen.
synchronize = true;
unified = true;
}
}
static boolean shouldPoll(String type) {