summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b893574)
raw | patch | inline | side by side (parent: b893574)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 7 May 2008 06:53:32 +0000 (06:53 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 7 May 2008 06:53:32 +0000 (06:53 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10798 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/heimdal/admin/systems/services/kerberos/class_krb5_policy.inc | patch | blob | history |
diff --git a/gosa-plugins/heimdal/admin/systems/services/kerberos/class_krb5_policy.inc b/gosa-plugins/heimdal/admin/systems/services/kerberos/class_krb5_policy.inc
index 24df262030525a79aa00c01102c2d0eb372bf7be..e52889aeaaa0daf0d449d113f41d215cb95a347b 100644 (file)
$message[] = msgPool::toosmall(_("Password history"));
}
- /* Check password */
+ /* Check password minimum length */
if(!is_numeric($this->data['PW_MIN_LENGTH'])){
$message[] = msgPool::invalid(_("Password minimum length"));
}elseif($this->data['PW_MIN_LENGTH'] <= 0){
$message[] = msgPool::toosmall(_("Password minimum length"));
}
- /* Check password history */
- if(!is_numeric($this->data['PW_MIN_LENGTH'])){
- $message[] = msgPool::invalid(_("Password minimum length"));
- }elseif($this->data['PW_MIN_LENGTH'] <= 0){
- $message[] = msgPool::toosmall(_("Password minimum length"));
+ /* Check password different character classes */
+ if(!is_numeric($this->data['PW_MIN_CLASSES'])){
+ $message[] = msgPool::invalid(_("Password min characters"));
+ }elseif($this->data['PW_MIN_CLASSES'] <= 0){
+ $message[] = msgPool::toosmall(_("Password min characters"));
+ }elseif($this->data['PW_MIN_CLASSES'] > $this->data['PW_MIN_LENGTH']){
+ $message[] = sprintf(_("The value specified for '%s' must be smaller than the value specified for '%s'."),
+ _("Password min characters"),_("Password minimum length"));
}
+
+ /* Check password min lifetime */
+ if(!is_numeric($this->data['PW_MIN_LIFE'])){
+ $message[] = msgPool::invalid(_("Password minimum lifetime"));
+ }elseif($this->data['PW_MIN_LIFE'] <= 0){
+ $message[] = msgPool::toosmall(_("Password minimum lifetime"));
+ }
+
+ /* Check password lifetime */
+ if(!is_numeric($this->data['PW_MAX_LIFE'])){
+ $message[] = msgPool::invalid(_("Password lifetime"));
+ }elseif($this->data['PW_MAX_LIFE'] <= 0){
+ $message[] = msgPool::toosmall(_("Password lifetime"));
+ }elseif($this->data['PW_MAX_LIFE'] < $this->data['PW_MIN_LIFE']){
+ $message[] = sprintf(_("The value specified for '%s' must be smaller than the value specified for '%s'."),
+ _("Password minimum lifetime"),_("Password lifetime"));
+ }
+
return($message);
}