hainenber commented on issue #37927: URL: https://github.com/apache/superset/issues/37927#issuecomment-3924401723
``` # Password policy PASSWORD_MIN_LENGTH = 12 PASSWORD_REQUIRE_UPPERCASE = True PASSWORD_REQUIRE_LOWERCASE = True PASSWORD_REQUIRE_DIGIT = True PASSWORD_REQUIRE_SPECIAL = True PASSWORD_COMMON_LIST_CHECK = True ``` Regarding password policy, I would want to delegate this to user's responsibility. Most modern password managers have their own password generator mechanisms with varying options and if they follow best practice, the generated password should tick all of requirements. In addition, it'd simplify the possible architecture and subsequent implementation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
