1

Topic: strong password

==== Required information ====
- iRedMail version: 0.8.7 / 1.8.2
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): mysql
- Linux/BSD distribution name and version: Debain 7.5
- Related log if you're reporting an issue:
====

Hi

In 1.8.2 it is now enforced that the password have to be strong, not only min lenght, how can i disable that for some domains or global?


regards
GaXy

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: strong password

Search "PASSWORD_" in file libs/default_settings.py, you can find several parameters control the password restrictions. If you want to turn it off, please copy the parameters to main config file "settings.py" then change them. Restarting Apache service is required.

PASSWORD_HAS_LETTER = True
PASSWORD_HAS_UPPERCASE = True
PASSWORD_HAS_NUMBER = True
PASSWORD_HAS_SPECIAL_CHAR = True

3

Re: strong password

thx works for me, CLOSE