From e8448ad681e806d9ae91b6abcd190922f841d303 Mon Sep 17 00:00:00 2001 From: Noriko Hosoi Date: Jan 21 2016 01:00:11 +0000 Subject: Ticket #48417 - ds-console: lower password history minimum to 1 Description: Per request, lower the minimum value of the kept password history from 2 to 1 for both Global password policy as well as for Fine-grained password policy. https://fedorahosted.org/389/ticket/48417 Reviewed by firstyear@redhat.com (Thank you, William!!) --- diff --git a/help/en/help/configtab_db2.html b/help/en/help/configtab_db2.html index 5edbb91..31a0f73 100644 --- a/help/en/help/configtab_db2.html +++ b/help/en/help/configtab_db2.html @@ -32,7 +32,7 @@ Use this tab to set up a password policy for the directory.

-Remember X passwords. If the server is keeping a password history, this option specifies how many old passwords the server should store in the history list. The valid value range is from 2 to 24. The default value is 6. +Remember X passwords. If the server is keeping a password history, this option specifies how many old passwords the server should store in the history list. The valid value range is from 1 to 24. The default value is 6.

diff --git a/help/en/help/dir_browser2.html b/help/en/help/dir_browser2.html index d479c5c..e6d2e52 100644 --- a/help/en/help/dir_browser2.html +++ b/help/en/help/dir_browser2.html @@ -32,7 +32,7 @@ Use this tab to set up a password policy for the currently selected subtree or u

-Remember X passwords. If the server is keeping a password history, this option specifies how many old passwords the server should store in the history list. The valid value range is from 2 to 24. The default value is 6. +Remember X passwords. If the server is keeping a password history, this option specifies how many old passwords the server should store in the history list. The valid value range is from 1 to 24. The default value is 6.

diff --git a/help/en/help/statustab_general.html b/help/en/help/statustab_general.html index 05bf753..2a47561 100644 --- a/help/en/help/statustab_general.html +++ b/help/en/help/statustab_general.html @@ -39,9 +39,5 @@ Use this panel to view current server information. You cannot use this panel to

-Security level. Indicates whether the server uses domestic (US based, 128-bit ciphers) or export (non-US based, 40-bit ciphers) encryption levels. -

- -

Server status. Indicates whether the server is on or off.

diff --git a/src/com/netscape/admin/dirserv/panel/PasswordPolicyPanel.java b/src/com/netscape/admin/dirserv/panel/PasswordPolicyPanel.java index 7d3e84b..0050b39 100644 --- a/src/com/netscape/admin/dirserv/panel/PasswordPolicyPanel.java +++ b/src/com/netscape/admin/dirserv/panel/PasswordPolicyPanel.java @@ -1322,7 +1322,7 @@ public class PasswordPolicyPanel extends BlankPanel { private static final String HISTORY_NUM_DN = "cn=config"; private static final String HISTORY_NUM_ATTR_NAME = "passwordInHistory"; - private static final int HISTORY_NUM_MIN_VAL = 2; + private static final int HISTORY_NUM_MIN_VAL = 1; private static final int HISTORY_NUM_MAX_VAL = 24; private static final int DAY_TO_SEC_FACTOR = 86400;