Fixed missing Content-Type POP3/TOP

This commit is contained in:
M66B
2023-08-24 13:10:00 +02:00
parent c5259db334
commit f86829daea
3 changed files with 8 additions and 2 deletions

View File

@@ -195,7 +195,7 @@ public class EmailService implements AutoCloseable {
boolean auth_sasl = prefs.getBoolean("auth_sasl", true);
boolean auth_apop = prefs.getBoolean("auth_apop", false);
boolean use_top = prefs.getBoolean("use_top", true);
boolean forget_top = prefs.getBoolean("forget_top", true);
boolean forget_top = prefs.getBoolean("forget_top", false);
Log.i("Authenticate" +
" plain=" + auth_plain +
" login=" + auth_login +