LDAP auth: remove config option 'ldap_use_ssl'

Remove the config option 'ldap_use_ssl' from the code and documentation,
deprecating it for good.
This commit is contained in:
Peter Marschall
2025-09-29 20:54:21 +02:00
parent ce1e5c939a
commit 8c9df49caf
5 changed files with 1 additions and 24 deletions

View File

@@ -306,10 +306,6 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
"value": "",
"help": "Attribute to be used as username after authentication",
"type": str}),
("ldap_use_ssl", {
"value": "False",
"help": "Use ssl on the LDAP connection. Deprecated, use ldap_security instead!",
"type": bool}),
("ldap_security", {
"value": "none",
"help": "Encryption mode to be used: *none*|tls|starttls",