mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-08 01:53:25 +02:00
Removed debug PLAIN setting
This commit is contained in:
@@ -144,7 +144,6 @@ public class EmailService implements AutoCloseable {
|
||||
boolean socks_enabled = prefs.getBoolean("socks_enabled", false);
|
||||
String socks_proxy = prefs.getString("socks_proxy", "localhost:9050");
|
||||
|
||||
boolean auth_plain = prefs.getBoolean("auth_plain", true);
|
||||
boolean auth_sasl = prefs.getBoolean("auth_sasl", true);
|
||||
|
||||
// SOCKS proxy
|
||||
@@ -164,8 +163,6 @@ public class EmailService implements AutoCloseable {
|
||||
properties.put("mail.event.scope", "folder");
|
||||
properties.put("mail.event.executor", executor);
|
||||
|
||||
properties.put("mail." + protocol + ".auth.plain.disable", Boolean.toString(!auth_plain));
|
||||
|
||||
properties.put("mail." + protocol + ".sasl.enable", "true");
|
||||
if (auth_sasl) {
|
||||
properties.put("mail." + protocol + ".sasl.mechanisms", "CRAM-MD5");
|
||||
|
||||
Reference in New Issue
Block a user