Code

Force password set if samba password attributes are missing
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 11 Sep 2007 09:18:02 +0000 (09:18 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 11 Sep 2007 09:18:02 +0000 (09:18 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@7249 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/samba/class_sambaAccount.inc

index 3adfb1d7ad14cde697f9281345e7830eddbff7ee..1a29a01a437c8d9bef088ea8b665b21dcabf0b22 100644 (file)
@@ -722,6 +722,19 @@ class sambaAccount extends plugin
   }
 
 
+  /* Force password set, if this account doesn't have any samba passwords  */
+  function password_change_needed()
+  {
+    $ldap = $this->config->get_ldap_link();
+    $ldap->cat($this->dn,array("sambaLMPassword","sambaNTPassword"));
+    $attrs = $ldap->fetch();
+    if(!isset($attrs['sambaLMPassword']) || !isset($attrs['sambaNTPassword'])){
+      return(TRUE);
+    }
+    return(FALSE);
+  }
+
+
   /* Save data to object */
   function save_object()
   {