1 (edited by MelRay 2016-09-17 02:27:31)

Topic: Documentation on requirements adding user iredadmin

==== Required information ====
- iRedMail version 0.9.5-1
- Linux/BSD distribution name and version: Ubuntu server 16.04
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Apache
- Manage mail accounts with iRedAdmin-Pro? Yes
- Related log if you're reporting an issue:
====

So how do/can I change the required length of password when using the admin panel to add a new user? Also edit the complexity so I can change (if needed) any special characters that are required as default?

Other than that I have the proof of concept up and working (in a virtual machine). Other than this small glitch. Thanks Zhang this is awesome! Once I get this issue solved it is on to actually implementing it on a live production server for use with my domains.

Thanks in advance for your assistance!

----

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

2

Re: Documentation on requirements adding user iredadmin

Control the password complexity with settings below in iRedAdmin-Pro config file. You can find comments in file "libs/default_settings.py":

PASSWORD_SPECIAL_CHARACTERS = """#$%&'"*+-,.:;!<=>?@[]/\(){}_`~"""
PASSWORD_HAS_LETTER = True
PASSWORD_HAS_UPPERCASE = True
PASSWORD_HAS_NUMBER = True
PASSWORD_HAS_SPECIAL_CHAR = True