From 02ba375966a5713ff316a3e122fd1f57f575ebe6 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Tue, 28 Apr 2015 16:56:44 +0300 Subject: [PATCH] sasl: enable all mechanisms by default --- modules/sasl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sasl.cpp b/modules/sasl.cpp index d2a2f9df..80687660 100644 --- a/modules/sasl.cpp +++ b/modules/sasl.cpp @@ -23,7 +23,7 @@ static const struct { const char *szDescription; const bool bDefault; } SupportedMechanisms[] = { - { "EXTERNAL", "TLS certificate, for use with the *cert module", false }, + { "EXTERNAL", "TLS certificate, for use with the *cert module", true }, { "PLAIN", "Plain text negotiation, this should work always if the network supports SASL", true } };