help/en/help/configtab_db2.html | 2 +- help/en/help/dir_browser2.html | 2 +- help/en/help/statustab_general.html | 4 ---- src/com/netscape/admin/dirserv/panel/PasswordPolicyPanel.java | 2 +- 4 files changed, 3 insertions(+), 7 deletions(-)
New commits: commit e8448ad681e806d9ae91b6abcd190922f841d303 Author: Noriko Hosoi nhosoi@redhat.com Date: Wed Jan 20 15:34:36 2016 -0800
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. </p>
<p class="text"> -<b>Remember X passwords. </b>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. +<b>Remember X passwords. </b>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. </p> </blockquote>
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 </p>
<p class="text"> -<b>Remember X passwords. </b>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. +<b>Remember X passwords. </b>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. </p> </blockquote>
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 </p>
<p class="text"> -<b>Security level. </b>Indicates whether the server uses domestic (US based, 128-bit ciphers) or export (non-US based, 40-bit ciphers) encryption levels. -</p> - -<p class="text"> <b>Server status. </b>Indicates whether the server is on or off. </p> 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;
389-commits@lists.fedoraproject.org