==============================================================================
-helpers/basic_auth/MSNT/:
-
- * (C) 2000 Antonino Iannella, Stellar-X Pty Ltd
- * Released under GPL, see COPYING-2.0 for details.
-
- * Released under GNU Public License
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-==============================================================================
-
helpers/basic_auth/NCSA/basic_ncsa_auth.8:
This file is distributed in the hope that it will be useful,
==============================================================================
+helpers/basic_auth/SMB_LM/:
+
+ * (C) 2000 Antonino Iannella, Stellar-X Pty Ltd
+ * Released under GPL, see COPYING-2.0 for details.
+
+ * Released under GNU Public License
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+==============================================================================
+
helpers/basic_auth/SSPI/:
Guido Serassio, Torino - Italy
helpers/basic_auth/fake/Makefile
helpers/basic_auth/getpwnam/Makefile
helpers/basic_auth/LDAP/Makefile
- helpers/basic_auth/MSNT/Makefile
helpers/basic_auth/MSNT-multi-domain/Makefile
helpers/basic_auth/NCSA/Makefile
helpers/basic_auth/NIS/Makefile
helpers/basic_auth/RADIUS/Makefile
helpers/basic_auth/SASL/Makefile
helpers/basic_auth/SMB/Makefile
+ helpers/basic_auth/SMB_LM/Makefile
helpers/basic_auth/SSPI/Makefile
helpers/digest_auth/Makefile
helpers/digest_auth/eDirectory/Makefile
<item>Helper concurrency channels changes
<item>Configurable helper queue size
<item>SSLv2 support removal
+ <item>MSNT Helper changes
</itemize>
Most user-facing changes are reflected in squid.conf (see below).
various client/server workarounds specific to SSLv2 are removed.
+<sect1>MSNT Helper changes
+
+<p>The authentication helper previously known as <em>basic_msnt_auth</em> has
+ been renamed to <em>basc_smb_lm_auth</em> to reflect that it only performs
+ SMB LanMan protocol(s) instead of modern ActiveDirectory protocols.
+
+<p>The <em>basic_smb_lm_auth</em> helper is also deprecated and will be removed
+ in a later Squid version.
+
+
<sect>Changes to squid.conf since Squid-3.5
<p>
There have been changes to Squid's configuration file since Squid-3.5.
elif test "x$helper" = "xMSNT-multi-domain" ; then
m4_include([helpers/basic_auth/MSNT-multi-domain/required.m4])
- elif test "x$helper" = "xMSNT" ; then
- m4_include([helpers/basic_auth/MSNT/required.m4])
-
elif test "x$helper" = "xNCSA" ; then
m4_include([helpers/basic_auth/NCSA/required.m4])
elif test "x$helper" = "xSMB" ; then
m4_include([helpers/basic_auth/SMB/required.m4])
+ elif test "x$helper" = "xSMB_LM" ; then
+ m4_include([helpers/basic_auth/SMB_LM/required.m4])
+
elif test "x$helper" = "xSSPI" ; then
m4_include([helpers/basic_auth/SSPI/required.m4])