mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-02 07:06:18 +02:00
Fixed disabling SASL
This commit is contained in:
@@ -170,11 +170,9 @@ public class EmailService implements AutoCloseable {
|
||||
if (!auth_login)
|
||||
properties.put("mail." + protocol + ".auth.login.disable", "true");
|
||||
|
||||
properties.put("mail." + protocol + ".sasl.enable", "true");
|
||||
if (auth_sasl) {
|
||||
properties.put("mail." + protocol + ".sasl.mechanisms", "CRAM-MD5");
|
||||
properties.put("mail." + protocol + ".sasl.realm", realm == null ? "" : realm);
|
||||
}
|
||||
properties.put("mail." + protocol + ".sasl.enable", Boolean.toString(auth_sasl));
|
||||
properties.put("mail." + protocol + ".sasl.mechanisms", "CRAM-MD5");
|
||||
properties.put("mail." + protocol + ".sasl.realm", realm == null ? "" : realm);
|
||||
properties.put("mail." + protocol + ".auth.ntlm.domain", realm == null ? "" : realm);
|
||||
|
||||
// writetimeout: one thread overhead
|
||||
|
||||
Reference in New Issue
Block a user