Code

Removed notifications from config
[gosa.git] / gosa-core / include / functions.inc
index c55e566445c50bf605db61520161dbd56e4e8a75..677ebb193c86fbe16d749bfa387c3804ab54980c 100644 (file)
@@ -1,7 +1,9 @@
 <?php
 /*
- * This code is part of GOsa (https://gosa.gonicus.de)
- * Copyright (C) 2003 Cajus Pollmeier
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id$$
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -25,10 +27,11 @@ define ("CONFIG_TEMPLATE_DIR", "../contrib/");
 define ("HELP_BASEDIR", "/var/www/doc/");
 
 /* Define get_list flags */
-define("GL_NONE",      0);
-define("GL_SUBSEARCH", 1);
-define("GL_SIZELIMIT", 2);
-define("GL_CONVERT"  , 4);
+define("GL_NONE",         0);
+define("GL_SUBSEARCH",    1);
+define("GL_SIZELIMIT",    2);
+define("GL_CONVERT",      4);
+define("GL_NO_ACL_CHECK", 8);
 
 /* Heimdal stuff */
 define('UNIVERSAL',0x00);
@@ -49,13 +52,12 @@ define('DES3_CBC_MD5',5);
 define('DES3_CBC_SHA1',16);
 
 /* Define globals for revision comparing */
-$svn_path = '$HeadURL$';
-$svn_revision = '$Revision$';
+$svn_path = '$HeadURL: https://oss.gonicus.de/repositories/gosa/trunk/gosa-core/include/functions.inc $';
+$svn_revision = '$Revision: 9246 $';
 
 /* Include required files */
 require_once("class_location.inc");
 require_once ("functions_debug.inc");
-require_once ("functions_dns.inc");
 require_once ("accept-to-gettext.inc");
 
 /* Define constants for debugging */
@@ -94,14 +96,45 @@ $REWRITE= array( "รค" => "ae",
 /* Class autoloader */
 function __autoload($class_name) {
     global $class_mapping, $BASE_DIR;
+
+    if ($class_mapping === NULL){
+           echo sprintf(_("Fatal error: no class locations defined - please run '%s' to fix this"), "<b>update-gosa</b>");
+           exit;
+    }
+
     if (isset($class_mapping[$class_name])){
       require_once($BASE_DIR."/".$class_mapping[$class_name]);
     } else {
-      echo _("Fatal: cannot load class \"$class_name\" - execution aborted");
+      echo sprintf(_("Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"), $class_name, "<b>update-gosa</b>");
+      exit;
     }
 }
 
 
+/*! \brief Checks if a class is available. 
+ *  @param  name String  The class name.
+ *  @return boolean      True if class is available, else false.
+ */
+function class_available($name)
+{
+  global $class_mapping;
+  return(isset($class_mapping[$name]));
+}
+
+
+/* Check if plugin is avaliable */
+function plugin_available($plugin)
+{
+       global $class_mapping, $BASE_DIR;
+
+       if (!isset($class_mapping[$plugin])){
+               return false;
+       } else {
+               return is_readable($BASE_DIR."/".$class_mapping[$plugin]);
+       }
+}
+
+
 /* Create seed with microseconds */
 function make_seed() {
   list($usec, $sec) = explode(' ', microtime());
@@ -335,7 +368,7 @@ function ldap_login_user_htaccess ($username)
   /* Look for entry or realm */
   $ldap= $config->get_ldap_link();
   if (!preg_match("/Success/i", $ldap->error)){
-    msg_dialog::display(_("LDAP error"), sprintf(_('User login failed.').'<br><br>'._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), sprintf(_('User login failed.').'<br><br>'._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), FATAL_ERROR_DIALOG);
     $smarty= get_smarty();
     $smarty->display(get_template_path('headers.tpl'));
     echo "<body>".session::get('errors')."</body></html>";
@@ -344,7 +377,7 @@ function ldap_login_user_htaccess ($username)
   $ldap->search("(&(objectClass=gosaAccount)(uid=$username))", array("uid"));
   /* Found no uniq match? Strange, because we did above... */
   if ($ldap->count() != 1) {
-    msg_dialog::display(_("LDAP error"), _("Username / UID is not unique inside the LDAP tree. Please contact your Administrator."), ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), _("Username / UID is not unique inside the LDAP tree. Please contact your Administrator."), FATAL_ERROR_DIALOG);
     return (NULL);
   }
   $attrs= $ldap->fetch();
@@ -373,7 +406,7 @@ function ldap_login_user ($username, $password)
   /* look through the entire ldap */
   $ldap = $config->get_ldap_link();
   if (!preg_match("/Success/i", $ldap->error)){
-    msg_dialog::display(_("LDAP error"), sprintf(_("User login failed.")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), sprintf(_("User login failed.")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), FATAL_ERROR_DIALOG);
     $smarty= get_smarty();
     $smarty->display(get_template_path('headers.tpl'));
     echo "<body>".session::get('errors')."</body></html>";
@@ -414,7 +447,7 @@ function ldap_login_user ($username, $password)
 
             /* found more than one matching id */
     default:
-            msg_dialog::display(_("Internal error"), _("Username / UID is not unique inside the LDAP tree. Please contact your Administrator."), ERROR_DIALOG);
+            msg_dialog::display(_("Internal error"), _("Username / UID is not unique inside the LDAP tree. Please contact your Administrator."), FATAL_ERROR_DIALOG);
             return (NULL);
   }
 
@@ -715,43 +748,100 @@ function get_multiple_locks($objects)
 
 
 /* \!brief  This function searches the ldap database.
-            It search in  $sub_base,*,$base  for all objects matching the $filter.
+            It search in  $sub_bases,*,$base  for all objects matching the $filter.
 
     @param $filter    String The ldap search filter
     @param $category  String The ACL category the result objects belongs 
-    @param $sub_base  String The sub base we want to search for e.g. "ou=apps"
+    @param $sub_bases  String The sub base we want to search for e.g. "ou=apps"
     @param $base      String The ldap base from which we start the search
     @param $attributes Array The attributes we search for.
     @param $flags     Long   A set of Flags
  */
-function get_sub_list($filter, $category,$sub_base, $base= "", $attributes= array(), $flags= GL_SUBSEARCH)
+function get_sub_list($filter, $category,$sub_deps, $base= "", $attributes= array(), $flags= GL_SUBSEARCH)
 {
-
   global $config, $ui;
+  $departments = array();
+
+#  $start = microtime(TRUE);
 
   /* Get LDAP link */
   $ldap= $config->get_ldap_link($flags & GL_SIZELIMIT);
 
   /* Set search base to configured base if $base is empty */
   if ($base == ""){
-    $ldap->cd ($config->current['BASE']);
-  } else {
-    $ldap->cd ($base);
+    $base = $config->current['BASE'];
+  }
+  $ldap->cd ($base);
+
+  /* Ensure we have an array as department list */
+  if(is_string($sub_deps)){
+    $sub_deps = array($sub_deps);
   }
 
-  /* Remove , ("ou=1,ou=2.." => "ou=1") */
-  $sub_base = preg_replace("/,.*$/","",$sub_base);
+  /* Remove ,.*$ ("ou=1,ou=2.." => "ou=1") */
+  $sub_bases = array();
+  foreach($sub_deps as $key => $sub_base){
+    if(empty($sub_base)){
 
-  /* Check if there is a sub department specified */
-  if($sub_base == ""){
-    return(get_list($filter, $category,$base,$attributes,$flags));
+      /* Subsearch is activated and we got an empty sub_base.
+       *  (This may be the case if you have empty people/group ous).
+       * Fall back to old get_list(). 
+       * A log entry will be written.
+       */
+      if($flags & GL_SUBSEARCH){
+        $sub_bases = array();
+        break;
+      }else{
+        
+        /* Do NOT search within subtrees is requeste and the sub base is empty. 
+         * Append all known departments that matches the base.
+         */
+        $departments[$base] = $base;
+      }
+    }else{
+      $sub_bases[$key] = preg_replace("/,.*$/","",$sub_base);
+    }
+  }
+  
+   /* If there is no sub_department specified, fall back to old method, get_list().
+   */
+  if(!count($sub_bases) && !count($departments)){
+    
+    /* Log this fall back, it may be an unpredicted behaviour.
+     */
+    if(!count($sub_bases) && !count($departments)){
+      // log($action,$objecttype,$object,$changes_array = array(),$result = "") 
+      new log("debug","all",__FILE__,$attributes,
+          sprintf("get_sub_list(): Falling back to get_list(), due to empty sub_bases parameter.".
+            " This may slow down GOsa. Search was: '%s'",$filter));
+    }
+    $tmp = get_list($filter, $category,$base,$attributes,$flags);
+    return($tmp);
   }
 
-  /* Get all deparments matching the given sub_base */
-  $departments = array();
-  $ldap->search($sub_base,array("dn"));
+  /* Get all deparments matching the given sub_bases */
+  $base_filter= "";
+  foreach($sub_bases as $sub_base){
+    $base_filter .= "(".$sub_base.")";
+  }
+  $base_filter = "(&(objectClass=organizationalUnit)(|".$base_filter."))";
+  $ldap->search($base_filter,array("dn"));
   while($attrs = $ldap->fetch()){
-    $departments[$attrs['dn']] = $attrs['dn'];
+    foreach($sub_deps as $sub_dep){
+
+      /* Only add those departments that match the reuested list of departments.
+       *
+       * e.g.   sub_deps = array("ou=servers,ou=systems,");
+       *  
+       * In this case we have search for "ou=servers" and we may have also fetched 
+       *  departments like this "ou=servers,ou=blafasel,..."
+       * Here we filter out those blafasel departments.
+       */
+      if(preg_match("/".normalizePreg($sub_dep)."/",$attrs['dn'])){
+        $departments[$attrs['dn']] = $attrs['dn'];
+        break;
+      }
+    }
   }
 
   $result= array();
@@ -771,7 +861,7 @@ function get_sub_list($filter, $category,$sub_base, $base= "", $attributes= arra
     if ($flags & GL_SUBSEARCH) {
       $ldap->search ($filter, $attributes);
     } else {
-      $ldap->ls ($filter,$base,$attributes);
+      $ldap->ls ($filter,$dep,$attributes);
     }
 
     /* Check for size limit exceeded messages for GUI feedback */
@@ -792,21 +882,30 @@ function get_sub_list($filter, $category,$sub_base, $base= "", $attributes= arra
         $attrs["dn"]= $dn;
       }
 
-      /* Sort in every value that fits the permissions */
-      if (is_array($category)){
-        foreach ($category as $o){
-          if ($ui->get_category_permissions($dn, $o) != ""){
+      /* Skip ACL checks if we are forced to skip those checks */
+      if($flags & GL_NO_ACL_CHECK){
+        $result[]= $attrs;
+      }else{
+
+        /* Sort in every value that fits the permissions */
+        if (is_array($category)){
+          foreach ($category as $o){
+            if ($ui->get_category_permissions($dn, $o) != ""){
+              $result[]= $attrs;
+              break;
+            }
+          }
+        } else {
+          if ( $ui->get_category_permissions($dn, $category) != ""){
             $result[]= $attrs;
-            break;
           }
         }
-      } else {
-        if ($ui->get_category_permissions($dn, $category) != ""){
-          $result[]= $attrs;
-        }
       }
     }
   }
+#  if(microtime(TRUE) - $start > 0.1){
+#    echo sprintf("<pre>GET_SUB_LIST  %s .| %f  --- $base -----$filter ---- $flags</pre>",__LINE__,microtime(TRUE) - $start);
+#  }
   return($result);
 }
 
@@ -815,6 +914,8 @@ function get_list($filter, $category, $base= "", $attributes= array(), $flags= G
 {
   global $config, $ui;
 
+#  $start = microtime(TRUE);
+
   /* Get LDAP link */
   $ldap= $config->get_ldap_link($flags & GL_SIZELIMIT);
 
@@ -842,36 +943,42 @@ function get_list($filter, $category, $base= "", $attributes= array(), $flags= G
   $result= array();
 
   while($attrs = $ldap->fetch()) {
+
     $dn= $ldap->getDN();
 
-    /* Sort in every value that fits the permissions */
-    if (is_array($category)){
-      foreach ($category as $o){
-        if ($ui->get_category_permissions($dn, $o) != ""){
-          if ($flags & GL_CONVERT){
-            $attrs["dn"]= convert_department_dn($dn);
-          } else {
-            $attrs["dn"]= $dn;
+    /* Convert dn into a printable format */
+    if ($flags & GL_CONVERT){
+      $attrs["dn"]= convert_department_dn($dn);
+    } else {
+      $attrs["dn"]= $dn;
+    }
+
+    if($flags & GL_NO_ACL_CHECK){
+      $result[]= $attrs;
+    }else{
+
+      /* Sort in every value that fits the permissions */
+      if (is_array($category)){
+        foreach ($category as $o){
+          if ($ui->get_category_permissions($dn, $o) != ""){
+
+            /* We found what we were looking for, break speeds things up */
+            $result[]= $attrs;
           }
+        }
+      } else {
+        if ($ui->get_category_permissions($dn, $category) != ""){
 
           /* We found what we were looking for, break speeds things up */
           $result[]= $attrs;
         }
       }
-    } else {
-      if ($ui->get_category_permissions($dn, $category) != ""){
-        if ($flags & GL_CONVERT){
-          $attrs["dn"]= convert_department_dn($dn);
-        } else {
-          $attrs["dn"]= $dn;
-        }
-
-        /* We found what we were looking for, break speeds things up */
-        $result[]= $attrs;
-      }
     }
   }
-
+#  if(microtime(TRUE) - $start > 0.1){
+#    echo sprintf("<pre>GET_LIST %s .| %f  --- $base -----$filter ---- $flags</pre>",__LINE__,microtime(TRUE) - $start);
+#  }
   return ($result);
 }
 
@@ -916,7 +1023,7 @@ function eval_sizelimit()
   if (isset($_POST['set_size_action'])){
 
     /* User wants new size limit? */
-    if (is_id($_POST['new_limit']) &&
+    if (tests::is_id($_POST['new_limit']) &&
         isset($_POST['action']) && $_POST['action']=="newlimit"){
 
       session::set('size_limit', validate($_POST['new_limit']));
@@ -1017,7 +1124,9 @@ function get_ou($name)
 {
   global $config;
 
-  $map = array( "applicationou" => "ou=apps,",
+  $map = array( 
+                "ogroupou"      => "ou=groups,",
+                "applicationou" => "ou=apps,",
                 "systemsou"     => "ou=systems,",
                 "serverou"      => "ou=servers,ou=systems,",
                 "terminalou"    => "ou=terminals,ou=systems,",
@@ -1101,42 +1210,6 @@ function get_base_from_people($dn)
 }
 
 
-function is_phone_nr($nr)
-{
-  if ($nr == ""){
-    return (TRUE);
-  }
-
-  return preg_match ("/^[\/0-9 ()+*-]+$/", $nr);
-}
-
-
-function is_dns_name($str)
-{
-  return(preg_match("/^[a-z0-9\.\-]*$/i",$str));
-}
-
-
-function is_url($url)
-{
-  if ($url == ""){
-    return (TRUE);
-  }
-
-  return preg_match ("/^(http|https):\/\/((?:[a-zA-Z0-9_-]+\.?)+):?(\d*)/", $url);
-}
-
-
-function is_dn($dn)
-{
-  if ($dn == ""){
-    return (TRUE);
-  }
-
-  return preg_match ("/^[a-z0-9 _-]+$/i", $dn);
-}
-
-
 function strict_uid_mode()
 {
   return !(isset($config->current['STRICT']) && preg_match('/^(no|false)$/i', $config->current['STRICT']));
@@ -1155,122 +1228,6 @@ function get_uid_regexp()
 }
 
 
-function is_uid($uid)
-{
-  global $config;
-
-  if ($uid == ""){
-    return (TRUE);
-  }
-
-  /* STRICT adds spaces and case insenstivity to the uid check.
-     This is dangerous and should not be used. */
-  if (strict_uid_mode()){
-    return preg_match ("/^[a-z0-9_-]+$/", $uid);
-  } else {
-    return preg_match ("/^[a-z0-9 _.-]+$/i", $uid);
-  }
-}
-
-
-function is_ip($ip)
-{
-  return preg_match("/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/", $ip);
-}
-
-
-function is_mac($mac)
-{
-  return preg_match("/^[a-f0-9][a-f0-9]:[a-f0-9][a-f0-9]:[a-f0-9][a-f0-9]:[a-f0-9][a-f0-9]:[a-f0-9][a-f0-9]:[a-f0-9][a-f0-9]$/i", $mac);
-}
-
-
-/* Checks if the given ip address dosen't match 
-    "is_ip" because there is also a sub net mask given */
-function is_ip_with_subnetmask($ip)
-{
-        /* Generate list of valid submasks */
-        $res = array();
-        for($e = 0 ; $e <= 32; $e++){
-                $res[$e] = $e;
-        }
-        $i[0] =255;
-        $i[1] =255;
-        $i[2] =255;
-        $i[3] =255;
-        for($a= 3 ; $a >= 0 ; $a --){
-                $c = 1;
-                while($i[$a] > 0 ){
-                        $str  = $i[0].".".$i[1].".".$i[2].".".$i[3];
-                        $res[$str] = $str;
-                        $i[$a] -=$c;
-                        $c = 2*$c;
-                }
-        }
-        $res["0.0.0.0"] = "0.0.0.0";
-        if(preg_match("/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.".
-                        "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.".
-                        "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.".
-                        "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/", $ip)){
-                $mask = preg_replace("/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.".
-                        "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.".
-                        "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.".
-                        "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/","",$ip);
-
-                $mask = preg_replace("/^\//","",$mask);
-                if((in_array("$mask",$res)) && preg_match("/^[0-9\.]/",$mask)){
-                        return(TRUE);
-                }
-        }
-        return(FALSE);
-}
-
-
-/* Simple is domain check, it checks if the given string looks like "string(...).string" */
-function is_domain($str)
-{
-  return(preg_match("/^([a-z0-9i\-]*)\.[a-z0-9]*$/i",$str));
-}
-
-
-function is_id($id)
-{
-  if ($id == ""){
-    return (FALSE);
-  }
-
-  return preg_match ("/^[0-9]+$/", $id);
-}
-
-
-function is_path($path)
-{
-  if ($path == ""){
-    return (TRUE);
-  }
-  if (!preg_match('/^[a-z0-9%\/_.+-]+$/i', $path)){
-    return (FALSE);
-  }
-
-  return preg_match ("/\/.+$/", $path);
-}
-
-
-function is_email($address, $template= FALSE)
-{
-  if ($address == ""){
-    return (TRUE);
-  }
-  if ($template){
-    return preg_match ("/^[._a-z0-9%-]+@[_a-z0-9-]+(\.[a-z0-9-]+)(\.[a-z0-9-]+)*$/i",
-        $address);
-  } else {
-    return preg_match ("/^[._a-z0-9-]+@[_a-z0-9-]+(\.[a-z0-9i-]+)(\.[a-z0-9-]+)*$/i",
-        $address);
-  }
-}
-
-
 function print_red()
 {
   trigger_error("Use of obsolete print_red");
@@ -1406,15 +1363,8 @@ function show_errors($message)
 
   /* Assemble the message array to a plain string */
   foreach ($message as $error){
-    if ($complete == ""){
-      $complete= $error;
-    } else {
-      $complete= "$error<br>$complete";
-    }
+    msg_dialog::display(_("Error"), $error, ERROR_DIALOG);
   }
-
-  /* Fill ERROR variable with nice error dialog */
-  msg_dialog::display(_("Error"), $complete, ERROR_DIALOG);
 }
 
 
@@ -1425,7 +1375,7 @@ function show_ldap_error($message, $addon= "")
       msg_dialog::display(_("LDAP error:"), $message, ERROR_DIALOG);
     } else {
       if(!preg_match("/No such object/i",$message)){
-        msg_dialog::display(sprintf(_("LDAP error in plugin '%s':"),"<i>".$addon."</i>"),$message,ERROR_DIALOG);
+        msg_dialog::display(_("LDAP error"), sprintf(_("Plugin '%s':%s"),"<i>".$addon."</i>", "<br><br>$message"),ERROR_DIALOG);
       }
     }
     return TRUE;
@@ -2184,29 +2134,6 @@ function get_MicroTimeDiff($start , $stop)
 }
 
 
-/* Check if the given department name is valid */
-function is_department_name_reserved($name,$base)
-{
-  $reservedName = array("systems","apps","incomming","internal","accounts","fax","addressbook",
-                          preg_replace("/ou=(.*),/","\\1",get_people_ou()),
-                          preg_replace("/ou=(.*),/","\\1",get_groups_ou()));
-  $follwedNames['/ou=fai,ou=configs,ou=systems,/'] = array("fai","hooks","templates","scripts","disk","packages","variables","profiles");
-
-  /* Check if name is one of the reserved names */
-  if(in_array_ics($name,$reservedName)) {
-    return(true);
-  }
-
-  /* Check all follow combinations if name is in array && parent base == array_key, return false*/
-  foreach($follwedNames as $key => $names){
-    if((in_array_ics($name,$names)) && (preg_match($key,$base))){
-      return(true);
-    }
-  }
-  return(false);
-}
-
-
 function get_base_dir()
 {
   global $BASE_DIR;
@@ -2457,7 +2384,7 @@ function check_schema($cfg,$rfc2307bis = FALSE)
     }
     if(!$rfc2307bis && !isset($tmp['posixGroup']['STRUCTURAL'])){
       $checks['posixGroup']['STATUS']           = FALSE;
-      $checks['posixGroup']['MSG']              = _("You have disabled the rfc2307bis option on the 'ldap setup' step, but your schema   configuration do not support this option.");
+      $checks['posixGroup']['MSG']              = _("Your schema is configured to support the rfc2307bis group, but you have disabled this option on the 'ldap setup' step.");
       $checks['posixGroup']['INFO']             = _("The objectClass 'posixGroup' must be STRUCTURAL");
     }
   }
@@ -2534,49 +2461,7 @@ function get_post($name)
 }
 
 
-/* Check if $ip1 and $ip2 represents a valid IP range 
- *  returns TRUE in case of a valid range, FALSE in case of an error. 
- */
-function is_ip_range($ip1,$ip2)
-{
-  if(!is_ip($ip1) || !is_ip($ip2)){
-    return(FALSE);
-  }else{
-    $ar1 = split("\.",$ip1);
-    $var1 = $ar1[0] * (16777216) + $ar1[1] * (65536) + $ar1[2] * (256) + $ar1[3];
-
-    $ar2 = split("\.",$ip2);
-    $var2 = $ar2[0] * (16777216) + $ar2[1] * (65536) + $ar2[2] * (256) + $ar2[3];
-    return($var1 < $var2);
-  }
-}
-
-
-/* Check if the specified IP address $address is inside the given network */
-function is_in_network($network, $netmask, $address)
-{
-  $nw= split('\.', $network);
-  $nm= split('\.', $netmask);
-  $ad= split('\.', $address);
-
-  /* Generate inverted netmask */
-  for ($i= 0; $i<4; $i++){
-    $ni[$i]= 255-$nm[$i];
-    $la[$i]= $nw[$i] | $ni[$i];
-  }
-
-  /* Transform to integer */
-  $first= $nw[0] * (16777216) + $nw[1] * (65536) + $nw[2] * (256) + $nw[3];
-  $curr=  $ad[0] * (16777216) + $ad[1] * (65536) + $ad[2] * (256) + $ad[3];
-  $last=  $la[0] * (16777216) + $la[1] * (65536) + $la[2] * (256) + $la[3];
-
-  return ($first < $curr&& $last > $curr);
-}
-
-
-/* Return class name in correct case 
- *  mailMethodkolab =>  mailMethodKolab  ( k => K )
- */
+/* Return class name in correct case */
 function get_correct_class_name($cls)
 {
   global $class_mapping;
@@ -2712,31 +2597,40 @@ function change_password ($dn, $password, $mode=0, $hash= "")
 function generate_smb_nt_hash($password)
 {
   global $config;
-  $tmp= $config->data['MAIN']['SMBHASH']." ".escapeshellarg($password);
-  @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, $tmp, "Execute");
 
-  exec($tmp, $ar);
-  flush();
-  reset($ar);
-  $hash= current($ar);
+  # Try to use gosa-si?
+  if (isset($config->current['GOSA_SI'])){
+       $res= gosaSupportDaemon::send("gosa_gen_smb_hash", "GOSA", array("password" => $password), TRUE);
+       $hash= $res['XML']['HASH'];
+  } else {
+         $tmp= $config->data['MAIN']['SMBHASH']." ".escapeshellarg($password);
+         @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, $tmp, "Execute");
+
+         exec($tmp, $ar);
+         flush();
+         reset($ar);
+         $hash= current($ar);
+  }
+
   if ($hash == "") {
-    msg_dialog::display(_("Configuration error"), _("Setting for SMBHASH in gosa.conf is incorrect! Cannot change Samba password."), ERROR_DIALOG);
+         msg_dialog::display(_("Configuration error"), _("Cannot generate samba hash!"), ERROR_DIALOG);
+         return ("");
+  }
+
+  list($lm,$nt)= split (":", trim($hash));
+
+  if ($config->current['SAMBAVERSION'] == 3) {
+         $attrs['sambaLMPassword']= $lm;
+         $attrs['sambaNTPassword']= $nt;
+         $attrs['sambaPwdLastSet']= date('U');
+         $attrs['sambaBadPasswordCount']= "0";
+         $attrs['sambaBadPasswordTime']= "0";
   } else {
-    list($lm,$nt)= split (":", trim($hash));
-
-    if ($config->current['SAMBAVERSION'] == 3) {
-      $attrs['sambaLMPassword']= $lm;
-      $attrs['sambaNTPassword']= $nt;
-      $attrs['sambaPwdLastSet']= date('U');
-      $attrs['sambaBadPasswordCount']= "0";
-      $attrs['sambaBadPasswordTime']= "0";
-    } else {
-      $attrs['lmPassword']= $lm;
-      $attrs['ntPassword']= $nt;
-      $attrs['pwdLastSet']= date('U');
-    }
-    return($attrs);
+         $attrs['lmPassword']= $lm;
+         $attrs['ntPassword']= $nt;
+         $attrs['pwdLastSet']= date('U');
   }
+  return($attrs);
 }
 
 
@@ -2771,657 +2665,66 @@ function getEntryCSN($dn)
 }
 
 
-/* This function returns the offset for the default timezone. 
- * $stamp is used to detect summer or winter time.
- * In case of PHP5, the integrated timezone functions are used.
- */
-function get_default_timezone($stamp = NULL)
+/* Add a given objectClass to an attrs entry */
+function add_objectClass($classes, &$attrs)
 {
-  global $config;
-  $tz ="";
-
-  /* Default return value if zone could not be detected */
-  $zone = array("name" => "unconfigured", "value" => 0);
+  if (is_array($classes)){
+    $list= $classes;
+  } else {
+    $list= array($classes);
+  }
 
-  /* Use current timestamp if $stamp is not set */
-  if($stamp === NULL){
-    $stamp = time();
+  foreach ($list as $class){
+    $attrs['objectClass'][]= $class;
   }
+}
 
-  /* Is there a timezone configured in the gosa configuration (gosa.conf) */
-  if(isset($config->current['TIMEZONE']) || isset($config->data['MAIN']['TIMEZONE'])){
 
-    /* Get zonename */
-    if(isset($config->current['TIMEZONE'])){
-      $tz = $config->current['TIMEZONE'];
-    }else{
-      $tz = $config->data['MAIN']['TIMEZONE'];
-    }
-
-    if(!@date_default_timezone_set($tz)){
-      msg_dialog::display(_("Configuration error"), sprintf(_("The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate correct timezone offest."), $tz), ERROR_DIALOG);
-    }
-    $tz_delta = date("Z", $stamp);
-    $tz_delta = $tz_delta / 3600 ;
-    return(array("name" => $tz, "value" => $tz_delta));
-
-  }
-  return($zone);
-}
-
-
-/* Return zone informations */
-function _get_tz_zones()
-{
-  $timezones = array(
-      'Africa/Abidjan' => 0,
-      'Africa/Accra' => 0,
-      'Africa/Addis_Ababa' => 10800,
-      'Africa/Algiers' => 3600,
-      'Africa/Asmera' => 10800,
-      'Africa/Bamako' => 0,
-      'Africa/Bangui' => 3600,
-      'Africa/Banjul' => 0,
-      'Africa/Bissau' => 0,
-      'Africa/Blantyre' => 7200,
-      'Africa/Brazzaville' => 3600,
-      'Africa/Bujumbura' => 7200,
-      'Africa/Cairo' => 7200,
-      'Africa/Casablanca' => 0,
-      'Africa/Ceuta' => 3600,
-      'Africa/Conakry' => 0,
-      'Africa/Dakar' => 0,
-      'Africa/Dar_es_Salaam' => 10800,
-      'Africa/Djibouti' => 10800,
-      'Africa/Douala' => 3600,
-      'Africa/El_Aaiun' => 0,
-      'Africa/Freetown' => 0,
-      'Africa/Gaborone' => 7200,
-      'Africa/Harare' => 7200,
-      'Africa/Johannesburg' => 7200,
-      'Africa/Kampala' => 10800,
-      'Africa/Khartoum' => 10800,
-      'Africa/Kigali' => 7200,
-      'Africa/Kinshasa' => 3600,
-      'Africa/Lagos' => 3600,
-      'Africa/Libreville' => 3600,
-      'Africa/Lome' => 0,
-      'Africa/Luanda' => 3600,
-      'Africa/Lubumbashi' => 7200,
-      'Africa/Lusaka' => 7200,
-      'Africa/Malabo' => 3600,
-      'Africa/Maputo' => 7200,
-      'Africa/Maseru' => 7200,
-      'Africa/Mbabane' => 7200,
-      'Africa/Mogadishu' => 10800,
-      'Africa/Monrovia' => 0,
-      'Africa/Nairobi' => 10800,
-      'Africa/Ndjamena' => 3600,
-      'Africa/Niamey' => 3600,
-      'Africa/Nouakchott' => 0,
-      'Africa/Ouagadougou' => 0,
-      'Africa/Porto-Novo' => 3600,
-      'Africa/Sao_Tome' => 0,
-      'Africa/Timbuktu' => 0,
-      'Africa/Tripoli' => 7200,
-      'Africa/Tunis' => 3600,
-      'Africa/Windhoek' => 3600,
-      'America/Adak' => -36000,
-      'America/Anchorage' => -32400,
-      'America/Anguilla' => -14400,
-      'America/Antigua' => -14400,
-      'America/Araguaina' => -10800,
-      'America/Argentina/Buenos_Aires' => 0,
-      'America/Argentina/Catamarca' => 0,
-      'America/Argentina/ComodRivadavia' => 0,
-      'America/Argentina/Cordoba' => 0,
-      'America/Argentina/Jujuy' => 0,
-      'America/Argentina/La_Rioja' => 0,
-      'America/Argentina/Mendoza' => 0,
-      'America/Argentina/Rio_Gallegos' => 0,
-      'America/Argentina/San_Juan' => 0,
-      'America/Argentina/Tucuman' => 0,
-      'America/Argentina/Ushuaia' => 0,
-      'America/Aruba' => -14400,
-      'America/Asuncion' => -14400,
-      'America/Atikokan' => 0,
-      'America/Atka' => -36000,
-      'America/Bahia' => 0,
-      'America/Barbados' => -14400,
-      'America/Belem' => -10800,
-      'America/Belize' => -21600,
-      'America/Blanc-Sablon' => 0,
-      'America/Boa_Vista' => -14400,
-      'America/Bogota' => -18000,
-      'America/Boise' => -25200,
-      'America/Buenos_Aires' => -10800,
-      'America/Cambridge_Bay' => -25200,
-      'America/Campo_Grande' => 0,
-      'America/Cancun' => -21600,
-      'America/Caracas' => -14400,
-      'America/Catamarca' => -10800,
-      'America/Cayenne' => -10800,
-      'America/Cayman' => -18000,
-      'America/Chicago' => -21600,
-      'America/Chihuahua' => -25200,
-      'America/Coral_Harbour' => 0,
-      'America/Cordoba' => -10800,
-      'America/Costa_Rica' => -21600,
-      'America/Cuiaba' => -14400,
-      'America/Curacao' => -14400,
-      'America/Danmarkshavn' => 0,
-      'America/Dawson' => -28800,
-      'America/Dawson_Creek' => -25200,
-      'America/Denver' => -25200,
-      'America/Detroit' => -18000,
-      'America/Dominica' => -14400,
-      'America/Edmonton' => -25200,
-      'America/Eirunepe' => -18000,
-      'America/El_Salvador' => -21600,
-      'America/Ensenada' => -28800,
-      'America/Fort_Wayne' => -18000,
-      'America/Fortaleza' => -10800,
-      'America/Glace_Bay' => -14400,
-      'America/Godthab' => -10800,
-      'America/Goose_Bay' => -14400,
-      'America/Grand_Turk' => -18000,
-      'America/Grenada' => -14400,
-      'America/Guadeloupe' => -14400,
-      'America/Guatemala' => -21600,
-      'America/Guayaquil' => -18000,
-      'America/Guyana' => -14400,
-      'America/Halifax' => -14400,
-      'America/Havana' => -18000,
-      'America/Hermosillo' => -25200,
-      'America/Indiana/Indianapolis' => -18000,
-      'America/Indiana/Knox' => -18000,
-      'America/Indiana/Marengo' => -18000,
-      'America/Indiana/Petersburg' => 0,
-      'America/Indiana/Vevay' => -18000,
-      'America/Indiana/Vincennes' => 0,
-      'America/Indianapolis' => -18000,
-      'America/Inuvik' => -25200,
-      'America/Iqaluit' => -18000,
-      'America/Jamaica' => -18000,
-      'America/Jujuy' => -10800,
-      'America/Juneau' => -32400,
-      'America/Kentucky/Louisville' => -18000,
-      'America/Kentucky/Monticello' => -18000,
-      'America/Knox_IN' => -18000,
-      'America/La_Paz' => -14400,
-      'America/Lima' => -18000,
-      'America/Los_Angeles' => -28800,
-      'America/Louisville' => -18000,
-      'America/Maceio' => -10800,
-      'America/Managua' => -21600,
-      'America/Manaus' => -14400,
-      'America/Martinique' => -14400,
-      'America/Mazatlan' => -25200,
-      'America/Mendoza' => -10800,
-      'America/Menominee' => -21600,
-      'America/Merida' => -21600,
-      'America/Mexico_City' => -21600,
-      'America/Miquelon' => -10800,
-      'America/Moncton' => 0,
-      'America/Monterrey' => -21600,
-      'America/Montevideo' => -10800,
-      'America/Montreal' => -18000,
-      'America/Montserrat' => -14400,
-      'America/Nassau' => -18000,
-      'America/New_York' => -18000,
-      'America/Nipigon' => -18000,
-      'America/Nome' => -32400,
-      'America/Noronha' => -7200,
-      'America/North_Dakota/Center' => -21600,
-      'America/North_Dakota/New_Salem' => 0,
-      'America/Panama' => -18000,
-      'America/Pangnirtung' => -18000,
-      'America/Paramaribo' => -10800,
-      'America/Phoenix' => -25200,
-      'America/Port-au-Prince' => -18000,
-      'America/Port_of_Spain' => -14400,
-      'America/Porto_Acre' => -18000,
-      'America/Porto_Velho' => -14400,
-      'America/Puerto_Rico' => -14400,
-      'America/Rainy_River' => -21600,
-      'America/Rankin_Inlet' => -21600,
-      'America/Recife' => -10800,
-      'America/Regina' => -21600,
-      'America/Rio_Branco' => -18000,
-      'America/Rosario' => -10800,
-      'America/Santiago' => -14400,
-      'America/Santo_Domingo' => -14400,
-      'America/Sao_Paulo' => -10800,
-      'America/Scoresbysund' => -3600,
-      'America/Shiprock' => -25200,
-      'America/St_Johns' => -12600,
-      'America/St_Kitts' => -14400,
-      'America/St_Lucia' => -14400,
-      'America/St_Thomas' => -14400,
-      'America/St_Vincent' => -14400,
-      'America/Swift_Current' => -21600,
-      'America/Tegucigalpa' => -21600,
-      'America/Thule' => -14400,
-      'America/Thunder_Bay' => -18000,
-      'America/Tijuana' => -28800,
-      'America/Toronto' => 0,
-      'America/Tortola' => -14400,
-      'America/Vancouver' => -28800,
-      'America/Virgin' => -14400,
-      'America/Whitehorse' => -28800,
-      'America/Winnipeg' => -21600,
-      'America/Yakutat' => -32400,
-      'America/Yellowknife' => -25200,
-      'Antarctica/Casey' => 28800,
-      'Antarctica/Davis' => 25200,
-      'Antarctica/DumontDUrville' => 36000,
-      'Antarctica/Mawson' => 21600,
-      'Antarctica/McMurdo' => 43200,
-      'Antarctica/Palmer' => -14400,
-      'Antarctica/Rothera' => 0,
-      'Antarctica/South_Pole' => 43200,
-      'Antarctica/Syowa' => 10800,
-      'Antarctica/VostokArctic/Longyearbyen' => 0,
-      'Asia/Aden' => 10800,
-      'Asia/Almaty' => 21600,
-      'Asia/Amman' => 7200,
-      'Asia/Anadyr' => 43200,
-      'Asia/Aqtau' => 14400,
-      'Asia/Aqtobe' => 18000,
-      'Asia/Ashgabat' => 18000,
-      'Asia/Ashkhabad' => 18000,
-      'Asia/Baghdad' => 10800,
-      'Asia/Bahrain' => 10800,
-      'Asia/Baku' => 14400,
-      'Asia/Bangkok' => 25200,
-      'Asia/Beirut' => 7200,
-      'Asia/Bishkek' => 18000,
-      'Asia/Brunei' => 28800,
-      'Asia/Calcutta' => 19800,
-      'Asia/Choibalsan' => 32400,
-      'Asia/Chongqing' => 28800,
-      'Asia/Chungking' => 28800,
-      'Asia/Colombo' => 21600,
-      'Asia/Dacca' => 21600,
-      'Asia/Damascus' => 7200,
-      'Asia/Dhaka' => 21600,
-      'Asia/Dili' => 32400,
-      'Asia/Dubai' => 14400,
-      'Asia/Dushanbe' => 18000,
-      'Asia/Gaza' => 7200,
-      'Asia/Harbin' => 28800,
-      'Asia/Hong_Kong' => 28800,
-      'Asia/Hovd' => 25200,
-      'Asia/Irkutsk' => 28800,
-      'Asia/Istanbul' => 7200,
-      'Asia/Jakarta' => 25200,
-      'Asia/Jayapura' => 32400,
-      'Asia/Jerusalem' => 7200,
-      'Asia/Kabul' => 16200,
-      'Asia/Kamchatka' => 43200,
-      'Asia/Karachi' => 18000,
-      'Asia/Kashgar' => 28800,
-      'Asia/Katmandu' => 20700,
-      'Asia/Krasnoyarsk' => 25200,
-      'Asia/Kuala_Lumpur' => 28800,
-      'Asia/Kuching' => 28800,
-      'Asia/Kuwait' => 10800,
-      'Asia/Macao' => 28800,
-      'Asia/Macau' => 0,
-      'Asia/Magadan' => 39600,
-      'Asia/Makassar' => 0,
-      'Asia/Manila' => 28800,
-      'Asia/Muscat' => 14400,
-      'Asia/Nicosia' => 7200,
-      'Asia/Novosibirsk' => 21600,
-      'Asia/Omsk' => 21600,
-      'Asia/Oral' => 0,
-      'Asia/Phnom_Penh' => 25200,
-      'Asia/Pontianak' => 25200,
-      'Asia/Pyongyang' => 32400,
-      'Asia/Qatar' => 10800,
-      'Asia/Qyzylorda' => 0,
-      'Asia/Rangoon' => 23400,
-      'Asia/Riyadh' => 10800,
-      'Asia/Saigon' => 25200,
-      'Asia/Sakhalin' => 36000,
-      'Asia/Samarkand' => 18000,
-      'Asia/Seoul' => 32400,
-      'Asia/Shanghai' => 28800,
-      'Asia/Singapore' => 28800,
-      'Asia/Taipei' => 28800,
-      'Asia/Tashkent' => 18000,
-      'Asia/Tbilisi' => 14400,
-      'Asia/Tehran' => 12600,
-      'Asia/Tel_Aviv' => 7200,
-      'Asia/Thimbu' => 21600,
-      'Asia/Thimphu' => 21600,
-      'Asia/Tokyo' => 32400,
-      'Asia/Ujung_Pandang' => 28800,
-      'Asia/Ulaanbaatar' => 28800,
-      'Asia/Ulan_Bator' => 28800,
-      'Asia/Urumqi' => 28800,
-      'Asia/Vientiane' => 25200,
-      'Asia/Vladivostok' => 36000,
-      'Asia/Yakutsk' => 32400,
-      'Asia/Yekaterinburg' => 18000,
-      'Asia/YerevanAtlantic/Azores' => 0,
-      'Atlantic/Bermuda' => -14400,
-      'Atlantic/Canary' => 0,
-      'Atlantic/Cape_Verde' => -3600,
-      'Atlantic/Faeroe' => 0,
-      'Atlantic/Jan_Mayen' => 3600,
-      'Atlantic/Madeira' => 0,
-      'Atlantic/Reykjavik' => 0,
-      'Atlantic/South_Georgia' => -7200,
-      'Atlantic/St_Helena' => 0,
-      'Atlantic/Stanley' => -14400,
-      'Australia/ACT' => 36000,
-      'Australia/Adelaide' => 34200,
-      'Australia/Brisbane' => 36000,
-      'Australia/Broken_Hill' => 34200,
-      'Australia/Canberra' => 36000,
-      'Australia/Currie' => 0,
-      'Australia/Darwin' => 34200,
-      'Australia/Hobart' => 36000,
-      'Australia/LHI' => 37800,
-      'Australia/Lindeman' => 36000,
-      'Australia/Lord_Howe' => 37800,
-      'Australia/Melbourne' => 36000,
-      'Australia/NSW' => 36000,
-      'Australia/North' => 34200,
-      'Australia/Perth' => 28800,
-      'Australia/Queensland' => 36000,
-      'Australia/South' => 34200,
-      'Australia/Sydney' => 36000,
-      'Australia/Tasmania' => 36000,
-      'Australia/Victoria' => 36000,
-      'Australia/West' => 28800,
-      'Australia/Yancowinna' => 34200,
-      'Europe/Amsterdam' => 3600,
-      'Europe/Andorra' => 3600,
-      'Europe/Athens' => 7200,
-      'Europe/Belfast' => 0,
-      'Europe/Belgrade' => 3600,
-      'Europe/Berlin' => 3600,
-      'Europe/Bratislava' => 3600,
-      'Europe/Brussels' => 3600,
-      'Europe/Bucharest' => 7200,
-      'Europe/Budapest' => 3600,
-      'Europe/Chisinau' => 7200,
-      'Europe/Copenhagen' => 3600,
-      'Europe/Dublin' => 0,
-      'Europe/Gibraltar' => 3600,
-      'Europe/Guernsey' => 0,
-      'Europe/Helsinki' => 7200,
-      'Europe/Isle_of_Man' => 0,
-      'Europe/Istanbul' => 7200,
-      'Europe/Jersey' => 0,
-      'Europe/Kaliningrad' => 7200,
-      'Europe/Kiev' => 7200,
-      'Europe/Lisbon' => 0,
-      'Europe/Ljubljana' => 3600,
-      'Europe/London' => 0,
-      'Europe/Luxembourg' => 3600,
-      'Europe/Madrid' => 3600,
-      'Europe/Malta' => 3600,
-      'Europe/Mariehamn' => 0,
-      'Europe/Minsk' => 7200,
-      'Europe/Monaco' => 3600,
-      'Europe/Moscow' => 10800,
-      'Europe/Nicosia' => 7200,
-      'Europe/Oslo' => 3600,
-      'Europe/Paris' => 3600,
-      'Europe/Prague' => 3600,
-      'Europe/Riga' => 7200,
-      'Europe/Rome' => 3600,
-      'Europe/Samara' => 14400,
-      'Europe/San_Marino' => 3600,
-      'Europe/Sarajevo' => 3600,
-      'Europe/Simferopol' => 7200,
-      'Europe/Skopje' => 3600,
-      'Europe/Sofia' => 7200,
-      'Europe/Stockholm' => 3600,
-      'Europe/Tallinn' => 7200,
-      'Europe/Tirane' => 3600,
-      'Europe/Tiraspol' => 7200,
-      'Europe/Uzhgorod' => 7200,
-      'Europe/Vaduz' => 3600,
-      'Europe/Vatican' => 3600,
-      'Europe/Vienna' => 3600,
-      'Europe/Vilnius' => 7200,
-      'Europe/Volgograd' => 0,
-      'Europe/Warsaw' => 3600,
-      'Europe/Zagreb' => 3600,
-      'Europe/Zaporozhye' => 7200,
-      'Europe/Zurich' => 3600,
-      'Indian/Antananarivo' => 10800,
-      'Indian/Chagos' => 21600,
-      'Indian/Christmas' => 25200,
-      'Indian/Cocos' => 23400,
-      'Indian/Comoro' => 10800,
-      'Indian/Kerguelen' => 18000,
-      'Indian/Mahe' => 14400,
-      'Indian/Maldives' => 18000,
-      'Indian/Mauritius' => 14400,
-      'Indian/Mayotte' => 10800,
-      'Indian/Reunion' => 14400,
-      'Pacific/Apia' => -39600,
-      'Pacific/Auckland' => 43200,
-      'Pacific/Chatham' => 45900,
-      'Pacific/Easter' => -21600,
-      'Pacific/Efate' => 39600,
-      'Pacific/Enderbury' => 46800,
-      'Pacific/Fakaofo' => -36000,
-      'Pacific/Fiji' => 43200,
-      'Pacific/Funafuti' => 43200,
-      'Pacific/Galapagos' => -21600,
-      'Pacific/Gambier' => -32400,
-      'Pacific/Guadalcanal' => 39600,
-      'Pacific/Guam' => 36000,
-      'Pacific/Honolulu' => -36000,
-      'Pacific/Johnston' => -36000,
-      'Pacific/Kiritimati' => 50400,
-      'Pacific/Kosrae' => 39600,
-      'Pacific/Kwajalein' => 43200,
-      'Pacific/Majuro' => 43200,
-      'Pacific/Marquesas' => -34200,
-      'Pacific/Midway' => -39600,
-      'Pacific/Nauru' => 43200,
-      'Pacific/Niue' => -39600,
-      'Pacific/Norfolk' => 41400,
-      'Pacific/Noumea' => 39600,
-      'Pacific/Pago_Pago' => -39600,
-      'Pacific/Palau' => 32400,
-      'Pacific/Pitcairn' => -28800,
-      'Pacific/Ponape' => 39600,
-      'Pacific/Port_Moresby' => 36000,
-      'Pacific/Rarotonga' => -36000,
-      'Pacific/Saipan' => 36000,
-      'Pacific/Samoa' => -39600,
-      'Pacific/Tahiti' => -36000,
-      'Pacific/Tarawa' => 43200,
-      'Pacific/Tongatapu' => 46800,
-      'Pacific/Truk' => 36000,
-      'Pacific/Wake' => 43200,
-      'Pacific/Wallis' => 43200,
-      'Pacific/Yap' => 36000 );          
-
-  $dst_timezones = array (  
-      'America/Adak' => 1,
-      'America/Atka' => 1,
-      'America/Anchorage' => 1,
-      'America/Juneau' => 1,
-      'America/Nome' => 1,
-      'America/Yakutat' => 1,
-      'America/Dawson' => 1,
-      'America/Ensenada' => 1,
-      'America/Los_Angeles' => 1,
-      'America/Tijuana' => 1,
-      'America/Vancouver' => 1,
-      'America/Whitehorse' => 1,
-      'America/Boise' => 1,
-      'America/Cambridge_Bay' => 1,
-      'America/Chihuahua' => 1,
-      'America/Denver' => 1,
-      'America/Edmonton' => 1,
-      'America/Inuvik' => 1,
-      'America/Mazatlan' => 1,
-      'America/Shiprock' => 1,
-      'America/Yellowknife' => 1,
-      'America/Cancun' => 1,
-      'America/Chicago' => 1,
-      'America/Menominee' => 1,
-      'America/Merida' => 1,
-      'America/Monterrey' => 1,
-      'America/North_Dakota/Center' => 1,
-      'America/Rainy_River' => 1,
-      'America/Rankin_Inlet' => 1,
-      'America/Winnipeg' => 1,
-      'Pacific/Easter' => 1,
-      'America/Detroit' => 1,
-      'America/Grand_Turk' => 1,
-      'America/Havana' => 1,
-      'America/Iqaluit' => 1,
-      'America/Kentucky/Louisville' => 1,
-      'America/Kentucky/Monticello' => 1,
-      'America/Louisville' => 1,
-      'America/Montreal' => 1,
-      'America/Nassau' => 1,
-      'America/New_York' => 1,
-      'America/Nipigon' => 1,
-      'America/Pangnirtung' => 1,
-      'America/Thunder_Bay' => 1,
-      'America/Asuncion' => 1,
-      'America/Cuiaba' => 1,
-      'America/Glace_Bay' => 1,
-      'America/Goose_Bay' => 1,
-      'America/Halifax' => 1,
-      'America/Santiago' => 1,
-      'Antarctica/Palmer' => 1,
-      'Atlantic/Bermuda' => 1,
-      'Atlantic/Stanley' => 1,
-      'America/St_Johns' => 1,
-      'America/Araguaina' => 1,
-      'America/Fortaleza' => 1,
-      'America/Godthab' => 1,
-      'America/Maceio' => 1,
-      'America/Miquelon' => 1,
-      'America/Recife' => 1,
-      'America/Sao_Paulo' => 1,
-      'America/Scoresbysund' => 1,
-      'Atlantic/Canary' => 1,
-      'Atlantic/Faeroe' => 1,
-      'Atlantic/Madeira' => 1,
-      'Europe/Belfast' => 1,
-      'Europe/Dublin' => 1,
-      'Europe/Lisbon' => 1,
-      'Europe/London' => 1,
-      'Africa/Ceuta' => 1,
-      'Africa/Windhoek' => 1,
-      'Atlantic/Jan_Mayen' => 1,
-      'Europe/Amsterdam' => 1,
-      'Europe/Andorra' => 1,
-      'Europe/Belgrade' => 1,
-      'Europe/Berlin' => 1,
-      'Europe/Bratislava' => 1,
-      'Europe/Brussels' => 1,
-      'Europe/Budapest' => 1,
-      'Europe/Copenhagen' => 1,
-      'Europe/Gibraltar' => 1,
-      'Europe/Ljubljana' => 1,
-      'Europe/Luxembourg' => 1,
-      'Europe/Madrid' => 1,
-      'Europe/Malta' => 1,
-      'Europe/Monaco' => 1,
-      'Europe/Oslo' => 1,
-      'Europe/Paris' => 1,
-      'Europe/Prague' => 1,
-      'Europe/Rome' => 1,
-      'Europe/San_Marino' => 1,
-      'Europe/Sarajevo' => 1,
-      'Europe/Skopje' => 1,
-      'Europe/Stockholm' => 1,
-      'Europe/Tirane' => 1,
-      'Europe/Vaduz' => 1,
-      'Europe/Vatican' => 1,
-      'Europe/Vienna' => 1,
-      'Europe/Warsaw' => 1,
-      'Europe/Zagreb' => 1,
-      'Europe/Zurich' => 1,
-      'Africa/Cairo' => 1,
-      'Asia/Amman' => 1,
-      'Asia/Beirut' => 1,
-      'Asia/Damascus' => 1,
-      'Asia/Gaza' => 1,
-      'Asia/Istanbul' => 1,
-      'Asia/Jerusalem' => 1,
-      'Asia/Nicosia' => 1,
-      'Asia/Tel_Aviv' => 1,
-      'Europe/Athens' => 1,
-      'Europe/Bucharest' => 1,
-      'Europe/Chisinau' => 1,
-      'Europe/Helsinki' => 1,
-      'Europe/Istanbul' => 1,
-      'Europe/Kaliningrad' => 1,
-      'Europe/Kiev' => 1,
-      'Europe/Minsk' => 1,
-      'Europe/Nicosia' => 1,
-      'Europe/Riga' => 1,
-      'Europe/Simferopol' => 1,
-      'Europe/Sofia' => 1,
-      'Europe/Tiraspol' => 1,
-      'Europe/Uzhgorod' => 1,
-      'Europe/Zaporozhye' => 1,
-      'Asia/Baghdad' => 1,
-      'Europe/Moscow' => 1,
-      'Asia/Tehran' => 1,
-      'Asia/Aqtau' => 1,
-      'Asia/Baku' => 1,
-      'Asia/Tbilisi' => 1,
-      'Europe/Samara' => 1,
-      'Asia/Aqtobe' => 1,
-      'Asia/Bishkek' => 1,
-      'Asia/Yekaterinburg' => 1,
-      'Asia/Almaty' => 1,
-      'Asia/Novosibirsk' => 1,
-      'Asia/Omsk' => 1,
-      'Asia/Krasnoyarsk' => 1,
-      'Asia/Irkutsk' => 1,
-      'Asia/Yakutsk' => 1,
-      'Australia/Adelaide' => 1,
-      'Australia/Broken_Hill' => 1,
-      'Australia/South' => 1,
-      'Australia/Yancowinna' => 1,
-      'Asia/Sakhalin' => 1,
-      'Asia/Vladivostok' => 1,
-      'Australia/ACT' => 1,
-      'Australia/Canberra' => 1,
-      'Australia/Hobart' => 1,
-      'Australia/Melbourne' => 1,
-      'Australia/NSW' => 1,
-      'Australia/Sydney' => 1,
-      'Australia/Tasmania' => 1,
-      'Australia/Victoria' => 1,
-      'Australia/LHI' => 1,
-      'Australia/Lord_Howe' => 1,
-      'Asia/Magadan' => 1,
-      'Antarctica/McMurdo' => 1,
-      'Antarctica/South_Pole' => 1,
-      'Asia/Anadyr' => 1,
-      'Asia/Kamchatka' => 1,
-      'Pacific/Auckland' => 1,
-      'Pacific/Chatham' => 1,
-      );  
-  return(array("TIMEZONES" => $timezones, "DST_ZONES" => $dst_timezones));
-}
-
-
-function display_error_page()
+/* Removes a given objectClass from the attrs entry */
+function remove_objectClass($classes, &$attrs)
 {
-  $smarty= get_smarty();
-  $smarty->display(get_template_path('headers.tpl'));
-  echo "<body>".msg_dialog::get_dialogs()."</body></html>";
+  if (isset($attrs['objectClass'])){
+    /* Array? */
+    if (is_array($classes)){
+      $list= $classes;
+    } else {
+      $list= array($classes);
+    }
+
+    $tmp= array();
+    foreach ($attrs['objectClass'] as $oc) {
+      foreach ($list as $class){
+        if ($oc != $class){
+          $tmp[]= $oc;
+        }
+      }
+    }
+    $attrs['objectClass']= $tmp;
+  }
+}
+
+/*! \brief  Initialize a file download with given content, name and data type. 
+ *  @param  data  String The content to send.
+ *  @param  name  String The name of the file.
+ *  @param  type  String The content identifier, default value is "application/octet-stream";
+ */
+function send_binary_content($data,$name,$type = "application/octet-stream")
+{
+  header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
+  header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
+  header("Cache-Control: no-cache");
+  header("Pragma: no-cache");
+  header("Cache-Control: post-check=0, pre-check=0");
+  header("Content-type: ".$type."");
+
+  /* force download dialog */
+  if (preg_match('/MSIE 5.5/', $HTTP_USER_AGENT) || preg_match('/MSIE 6.0/', $HTTP_USER_AGENT)) {
+    header('Content-Disposition: filename="'.$name.'"');
+  } else {
+    header('Content-Disposition: attachment; filename="'.$name.'"');
+  }
+
+  echo $data;
   exit();
 }