Hi,
How to enforce password policies (other than expiry) in Jaspersoft AWS version? I'm interested in enforcing password strength, pattern, recycling, etc. policies.
Help appreciated!
Mike
2 Answers:
Hi Mike,
Yes, you can, but it requires a bit of experience with regular expressions. It's documented in the JasperReports Server Administrator Guide v5.1, section 7.2: Configuring User Password Options http://community.jaspersoft.com/sites/default/files/docs/jasperreports-s....
Here's the default setting, which matches any password:
You could change it to this:
which:
1) Searches for at least one digit in any position (any language)
2) Searches for at least one upper or lower case in any position (any language)
3) Enforces password to consist of 4-10 characters
These references may also help:
http://www.regular-expressions.info/unicode.html
http://forums.asp.net/t/918584.aspx/1
Mary Flynn
Jaspersoft