Documentum password policy

Options
jfernandezf
edited October 10, 2023 in Documentum #1

When I try to create a user in Documentum 23.2 with inline password, either through the DA, DQL or API, I get the error:

[DM_CRYPTO_E_WEAK_PASSWORD_PROVIDED]error:  "Provided password doesn't meet the complexity rules. Password length should be minimum of {0} and maximum of 64. And also has at least one uppercase letter, one lowercase letter, one numeric and one special character(@|_|-)."
How can I modify or delete the password policy?

Tagged:

Best Answer

  • Loic HERVE
    Options

    You can set the min password length like this (in API):

    append,c,docbaseconfig,r_module_name

    DM_CRYPTO_MIN_PASSWORD_LENGTH

    append,c,docbaseconfig,r_module_mode

    <desired value> //for example, 10

    save,c,docbaseconfig

    reinit,c

Answers

  • Loic HERVE
    Options

    You can set the min password length like this (in API):

    append,c,docbaseconfig,r_module_name

    DM_CRYPTO_MIN_PASSWORD_LENGTH

    append,c,docbaseconfig,r_module_mode

    <desired value> //for example, 10

    save,c,docbaseconfig

    reinit,c

  • Thanks for the hint, Loic.
    With your help, I found it in the manual and I understand that the length is the only thing that can be changed, right?

  • Yes, you're correct.