(imported topic written by BenKus)
Starting with BES 6.0.5, you can use the BES Admin “Advanced Options” to enforce password complexity. This will work for both database and private key passwords (only for new users).
To set a password complexity requirement, you will create a regular expression of the policy. Here is more info:
The password complexity is an advanced option in BES Admin (you will see a new tab). You will set two options:
passwordComplexityRegex – Regular expression to describe the password complexity.
passwordComplexityDescription – Description of the password complexity.
Here is an example passwordComplexityRegex that requires a 6-letter or longer password containing lower-case, upper case, and punctuation:
(?=.*[
:lower:]
)(?=.*[
:upper:]
)(?=.*[
:punct:]
).{6,}
Web Reports also has a similar password enforcement functionality available to administrators in the Settings interface.
Ben