1

Topic: How to decresase the requirements password of user

==== Required information ====
- iRedMail version: v2.1.2
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Linux/BSD distribution name and version: CentOs 6.5
- Related log if you're reporting an issue:
====

Dear team,

I have a question, is it possible to edit the requirement about the password?
where the password need :
at least one letter
at least one uppercase letter
at least one digit number
at least one special character: #$%&'"*+-,.:;!<=>?@[]/\(){}^_`~

But can I change the rules without that rules? we want make the password with lowercase without symbol and uppercase? I already update user by iRedMail-0.8.7/tools/create_mail_user_OpenLDAP.py, it works.

Regards,

marccell

----

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

2

Re: How to decresase the requirements password of user

I have the same question. I need to disable the complexy password.

I use:

FreeBSD 10 with Iredadmin-PRO-Mysql database.

Thanks for return.

3

Re: How to decresase the requirements password of user

Check this short tutorial:
http://www.iredmail.org/forum/post32478.html#p32478

4 (edited by carlosdias98 2014-09-09 06:09:50)

Re: How to decresase the requirements password of user

Hi,

I just to do this step:

PASSWORD_SPECIAL_CHARACTERS = """"""
PASSWORD_HAS_LETTER = False
PASSWORD_HAS_UPPERCASE = False
PASSWORD_HAS_NUMBER = False
PASSWORD_HAS_SPECIAL_CHAR = False

but i don't have success!

Erro: No uppercase letter in password.

Anything else ?

5

Re: How to decresase the requirements password of user

Did you restart Apache service after changing these parameters?

6

Re: How to decresase the requirements password of user

Yes i did.

7

Re: How to decresase the requirements password of user

Looks like a bug in iRedAdmin-Pro, i will try to reproduce this issue and come back to you later. Thanks for your report.

8

Re: How to decresase the requirements password of user

I cannot reproduce this issue with below settings in iRedAdmin-Pro config file "settings.py" and restarted Apache service:

PASSWORD_SPECIAL_CHARACTERS = """"""
PASSWORD_HAS_LETTER = False
PASSWORD_HAS_UPPERCASE = False
PASSWORD_HAS_NUMBER = False
PASSWORD_HAS_SPECIAL_CHAR = False

A simple password like '12345678' works.

9

Re: How to decresase the requirements password of user

Zhang,

I erase my config and write again exactly this:

PASSWORD_SPECIAL_CHARACTERS = """"""
PASSWORD_HAS_LETTER = False
PASSWORD_HAS_UPPERCASE = False
PASSWORD_HAS_NUMBER = False
PASSWORD_HAS_SPECIAL_CHAR = False

and now all requirements are disable!

It's Works!

Thanks a lot!