unix_memberUid = array_merge($_SESSION['account']->unix_memberUid, $_POST['users']); // remove doubles $_SESSION['account']->unix_memberUid = array_flip($_SESSION['account']->unix_memberUid); array_unique($_SESSION['account']->unix_memberUid); $_SESSION['account']->unix_memberUid = array_flip($_SESSION['account']->unix_memberUid); // sort user sort($_SESSION['account']->unix_memberUid); // display groupmembers page $select_local = 'groupmembers'; break; } if (isset($_POST['members']) && isset($_POST['remove'])) { $_SESSION['account']->unix_memberUid = array_delete($_POST['members'], $_SESSION['account']->unix_memberUid); $select_local = 'groupmembers'; break; } if (isset($_POST['back'])) { $select_local = 'general'; break; } if (isset($_POST['next'])) if ($_SESSION['config']->samba3=='yes') { $select_local = 'samba'; break; } else { $select_local = 'quota'; break; } } while(0); /* $select_local = 'groupmembers'; * if (isset($_POST['users']) && isset($_POST['add'])) { * // Add new user * $_SESSION['account']->unix_memberUid = array_merge($_SESSION['account']->unix_memberUid, $_POST['users']); * // remove doubles * $_SESSION['account']->unix_memberUid = array_flip($_SESSION['account']->unix_memberUid); * array_unique($_SESSION['account']->unix_memberUid); * $_SESSION['account']->unix_memberUid = array_flip($_SESSION['account']->unix_memberUid); * // sort user * sort($_SESSION['account']->unix_memberUid); * } * if (isset($_POST['members']) && isset($_POST['remove'])) { * $_SESSION['account']->unix_memberUid = array_delete($_POST['members'], $_SESSION['account']->unix_memberUid); * } * if (isset($_POST['back'])) $select_local = 'general'; * if (isset($_POST['next'])) * if ($_SESSION['config']->samba3=='yes') $select_local = 'samba'; * else $select_local = 'quota'; */ break; case 'general': // Write all general values into $_SESSION['account'] if no profile should be loaded if (!$_POST['load']) { $_SESSION['account']->general_dn = $_POST['f_general_suffix']; if (isset($_POST['f_general_username'])) $_SESSION['account']->general_username = $_POST['f_general_username']; else $_SESSION['account']->general_username = ''; if (isset($_POST['f_general_surname'])) $_SESSION['account']->general_surname = $_POST['f_general_surname']; else $_SESSION['account']->general_surname = ""; if (isset($_POST['f_general_givenname'])) $_SESSION['account']->general_givenname = $_POST['f_general_givenname']; else $_SESSION['account']->general_givenname = ""; if (isset($_POST['f_general_uidNumber'])) $_SESSION['account']->general_uidNumber = $_POST['f_general_uidNumber']; else $_SESSION['account']->general_uidNumber = ""; $_SESSION['account']->general_group = $_POST['f_general_group']; if (isset($_POST['f_general_groupadd'])) $_SESSION['account']->general_groupadd = $_POST['f_general_groupadd']; else $_SESSION['account']->general_groupadd = array(''); if (isset($_POST['f_general_homedir'])) $_SESSION['account']->general_homedir = $_POST['f_general_homedir']; else $_SESSION['account']->general_homedir = ""; $_SESSION['account']->general_shell = $_POST['f_general_shell']; if (isset($_POST['f_general_gecos'])) $_SESSION['account']->general_gecos = $_POST['f_general_gecos']; else $_SESSION['account']->general_gecos = ""; // Check if values are OK and set automatic values. if not error-variable will be set if ($_SESSION['account_old']) list($values, $errors) = checkglobal($_SESSION['account'], $_SESSION['account']->type, $_SESSION['account_old']); // account.inc else list($values, $errors) = checkglobal($_SESSION['account'], $_SESSION['account']->type); // account.inc if (is_object($values)) { while (list($key, $val) = each($values)) // Set only defined values if ($val) $_SESSION['account']->$key = $val; } // Check which part Site should be displayed next if ($_POST['next'] && ($errors=='')) switch ($_SESSION['account']->type) { case 'user': $select_local = 'unix'; break; case 'group': $select_local = 'groupmembers'; break; case 'host': $select_local = 'samba'; break; } } break; case 'unix': // Write all general values into $_SESSION['account'] if (isset($_POST['f_unix_password'])) { // Encraypt password $iv = base64_decode($_COOKIE["IV"]); $key = base64_decode($_COOKIE["Key"]); $_SESSION['account']->unix_password = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $_POST['f_unix_password'], MCRYPT_MODE_ECB, $iv)); } else $_SESSION['account']->unix_password = ''; if ($_POST['f_unix_password_no']) $_SESSION['account']->unix_password_no = true; else $_SESSION['account']->unix_password_no = false; if (isset($_POST['f_unix_pwdwarn'])) $_SESSION['account']->unix_pwdwarn = $_POST['f_unix_pwdwarn']; else $_SESSION['account']->unix_pwdwarn = ''; if (isset($_POST['f_unix_pwdallowlogin'])) $_SESSION['account']->unix_pwdallowlogin = $_POST['f_unix_pwdallowlogin']; else $_SESSION['account']->unix_pwdallowlogin = ''; if (isset($_POST['f_unix_pwdmaxage'])) $_SESSION['account']->unix_pwdmaxage = $_POST['f_unix_pwdmaxage']; else $_SESSION['account']->unix_pwdmaxage = ''; if (isset($_POST['f_unix_pwdminage'])) $_SESSION['account']->unix_pwdminage = $_POST['f_unix_pwdminage']; else $_SESSION['account']->unix_pwdminage = ''; //if (isset($_POST['f_unix_memberUid'])) $_SESSION['account']->unix_memberUid = $_POST['f_unix_memberUid']; // else $_SESSION['account']->unix_memberUid = ''; if (isset($_POST['f_unix_host'])) $_SESSION['account']->unix_host = $_POST['f_unix_host']; else $_SESSION['account']->unix_host = ''; $_SESSION['account']->unix_pwdexpire = mktime(10, 0, 0, $_POST['f_unix_pwdexpire_mon'], $_POST['f_unix_pwdexpire_day'], $_POST['f_unix_pwdexpire_yea']); if ($_POST['f_unix_deactivated']) $_SESSION['account']->unix_deactivated = $_POST['f_unix_deactivated']; else $_SESSION['account']->unix_deactivated = false; if ($_POST['genpass']) { // Generate a random password if generate-button was pressed $iv = base64_decode($_COOKIE["IV"]); $key = base64_decode($_COOKIE["Key"]); $_SESSION['account']->unix_password = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, genpasswd(), MCRYPT_MODE_ECB, $iv)); // Keep unix-page acitve $select_local = 'unix'; } // Check if values are OK and set automatic values. if not error-variable will be set else $errors = checkunix($_SESSION['account'], $_SESSION['account']->type); // account.inc // Check which part Site should be displayd // Check which part Site should be displayed next if ($_POST['back']) $select_local = 'general'; else if ($_POST['next'] && ($errors=='')) switch ($_SESSION['account']->type) { case 'user': $select_local = 'samba'; break; case 'group': if ($_SESSION['config']->samba3=='yes') $select_local = 'samba'; else $select_local = 'quota'; break; case 'host': $select_local = 'samba'; break; } break; case 'samba': // Write all general values into $_SESSION['account'] if ($_POST['f_smb_password']) { // Encrypt password $iv = base64_decode($_COOKIE["IV"]); $key = base64_decode($_COOKIE["Key"]); $_SESSION['account']->smb_password = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, base64_decode($_COOKIE['Key']), $_POST['f_smb_password'], MCRYPT_MODE_ECB, base64_decode($_COOKIE['IV']))); } else $_SESSION['account']->smb_password = ""; $_SESSION['account']->smb_pwdcanchange = mktime($_POST['f_smb_pwdcanchange_s'], $_POST['f_smb_pwdcanchange_m'], $_POST['f_smb_pwdcanchange_h'], $_POST['f_smb_pwdcanchange_mon'], $_POST['f_smb_pwdcanchange_day'], $_POST['f_smb_pwdcanchange_yea']); $_SESSION['account']->smb_pwdmustchange = mktime($_POST['f_smb_pwdmustchange_s'], $_POST['f_smb_pwdmustchange_m'], $_POST['f_smb_pwdmustchange_h'], $_POST['f_smb_pwdmustchange_mon'], $_POST['f_smb_pwdmustchange_day'], $_POST['f_smb_pwdmustchange_yea']); if ($_POST['f_smb_password_no']) $_SESSION['account']->smb_password_no = true; else $_SESSION['account']->smb_password_no = false; if ($_POST['f_smb_useunixpwd']) $_SESSION['account']->smb_useunixpwd = $_POST['f_smb_useunixpwd']; else $_SESSION['account']->smb_useunixpwd = false; if (isset($_POST['f_smb_homedrive'])) $_SESSION['account']->smb_homedrive = $_POST['f_smb_homedrive']; if (isset($_POST['f_smb_scriptpath'])) $_SESSION['account']->smb_scriptPath = $_POST['f_smb_scriptpath']; else $_SESSION['account']->smb_scriptPath = ''; if (isset($_POST['f_smb_smbuserworkstations'])) $_SESSION['account']->smb_smbuserworkstations = $_POST['f_smb_smbuserworkstations']; else $_SESSION['account']->smb_smbuserworkstations = ""; if (isset($_POST['f_smb_smbhome'])) $_SESSION['account']->smb_smbhome = stripslashes($_POST['f_smb_smbhome']); else $_SESSION['account']->smb_smbhome = ""; if (isset($_POST['f_smb_profilePath'])) $_SESSION['account']->smb_profilePath = stripslashes($_POST['f_smb_profilePath']); else $_SESSION['account']->smb_profilePath = ""; if ($_POST['f_smb_flagsW']) $_SESSION['account']->smb_flagsW = true; else $_SESSION['account']->smb_flagsW = false; if ($_POST['f_smb_flagsD']) $_SESSION['account']->smb_flagsD = true; else $_SESSION['account']->smb_flagsD = false; if ($_POST['f_smb_flagsX']) $_SESSION['account']->smb_flagsX = true; else $_SESSION['account']->smb_flagsX = false; if ($_SESSION['config']->samba3 == 'yes') { $samba3domains = $_SESSION['ldap']->search_domains($_SESSION[config]->get_domainSuffix()); for ($i=0; $iname) { $_SESSION['account']->smb_domain = $samba3domains[$i]; } } else { if (isset($_POST['f_smb_domain'])) $_SESSION['account']->smb_domain = $_POST['f_smb_domain']; else $_SESSION['account']->smb_domain = ''; } switch ($_POST['f_smb_mapgroup']) { case '*'._('Domain Guests'): $_SESSION['account']->smb_mapgroup = $_SESSION['account']->smb_domain->SID . "-" . '514'; break; case '*'._('Domain Users'): $_SESSION['account']->smb_mapgroup = $_SESSION['account']->smb_domain->SID . "-" . '513'; break; case '*'._('Domain Admins'): $_SESSION['account']->smb_mapgroup = $_SESSION['account']->smb_domain->SID . "-" . '512'; break; case $_SESSION['account']->general_group: if ($_SESSION['config']->samba3 == 'yes') $_SESSION['account']->smb_mapgroup = $_SESSION['account']->smb_domain->SID . "-". (2 * getgid($_SESSION['account']->general_group) + $_SESSION['account']->smb_domain->RIDbase +1); else $_SESSION['account']->smb_mapgroup = (2 * getgid($_SESSION['account']->general_group) + 1001); break; case $_SESSION['account']->general_username: if ($_SESSION['config']->samba3 == 'yes') $_SESSION['account']->smb_mapgroup = $_SESSION['account']->smb_domain->SID . "-". (2 * $_SESSION['account']->general_uidNumber + $_SESSION['account']->smb_domain->RIDbase +1); else $_SESSION['account']->smb_mapgroup = (2 * $_SESSION['account']->general_uidNumber + 1001); break; } // Reset password if reset button was pressed. Button only vissible if account should be modified // Check if values are OK and set automatic values. if not error-variable will be set list($values, $errors) = checksamba($_SESSION['account'], $_SESSION['account']->type); // account.inc if (is_object($values)) { while (list($key, $val) = each($values)) // Set only defined values if ($val) $_SESSION['account']->$key = $val; } // Check which part Site should be displayed next if ($_POST['back']) switch ($_SESSION['account']->type) { case 'user': $select_local = 'unix'; break; case 'group': $select_local = 'groupmembers'; break; } else if ($_POST['next']) if($errors=='') switch ($_SESSION['account']->type) { case 'user': $select_local = 'quota'; break; case 'group': $select_local = 'quota'; break; case 'host': $select_local = 'final'; break; } else $select_local = 'samba'; if ($_POST['respass']) { $_SESSION['account']->unix_password_no=true; $_SESSION['account']->smb_password_no=true; $select_local = 'samba'; } break; case 'quota': // Write all general values into $_SESSION['account'] $i=0; while ($_SESSION['account']->quota[$i][0]) { $_SESSION['account']->quota[$i][2] = $_POST['f_quota_'.$i.'_2']; $_SESSION['account']->quota[$i][3] = $_POST['f_quota_'.$i.'_3']; $_SESSION['account']->quota[$i][6] = $_POST['f_quota_'.$i.'_6']; $_SESSION['account']->quota[$i][7] = $_POST['f_quota_'.$i.'_7']; $i++; } // Check if values are OK and set automatic values. if not error-variable will be set list($values, $errors) = checkquota($_SESSION['account'], $_SESSION['account']->type); // account.inc if (is_object($values)) { while (list($key, $val) = each($values)) // Set only defined values if ($val) $_SESSION['account']->$key = $val; } // Check which part Site should be displayed next if ($_POST['back']) switch ($_SESSION['account']->type) { case 'user': $select_local = 'samba'; break; case 'group': if ($_SESSION['config']->samba3=='yes') $select_local = 'samba'; else $select_local = 'groupmembers'; break; } else if ($_POST['next']) if ($errors=='') switch ($_SESSION['account']->type) { case 'user': $select_local = 'personal'; break; case 'group': $select_local = 'final'; break; } else $select_local = 'quota'; break; case 'personal': // Write all general values into $_SESSION['account'] if (isset($_POST['f_personal_title'])) $_SESSION['account']->personal_title = $_POST['f_personal_title']; else $_SESSION['account']->personal_title = ""; if (isset($_POST['f_personal_mail'])) $_SESSION['account']->personal_mail = $_POST['f_personal_mail']; else $_SESSION['account']->personal_mail = ""; if (isset($_POST['f_personal_telephoneNumber'])) $_SESSION['account']->personal_telephoneNumber = $_POST['f_personal_telephoneNumber']; else $_SESSION['account']->personal_telephoneNumber = ""; if (isset($_POST['f_personal_mobileTelephoneNumber'])) $_SESSION['account']->personal_mobileTelephoneNumber = $_POST['f_personal_mobileTelephoneNumber']; else $_SESSION['account']->personal_mobileTelephoneNumber = ""; if (isset($_POST['f_personal_facsimileTelephoneNumber'])) $_SESSION['account']->personal_facsimileTelephoneNumber = $_POST['f_personal_facsimileTelephoneNumber']; else $_SESSION['account']->personal_facsimileTelephoneNumber = ""; if (isset($_POST['f_personal_street'])) $_SESSION['account']->personal_street = $_POST['f_personal_street']; else $_SESSION['account']->personal_street = ""; if (isset($_POST['f_personal_postalCode'])) $_SESSION['account']->personal_postalCode = $_POST['f_personal_postalCode']; else $_SESSION['account']->personal_postalCode = ""; if (isset($_POST['f_personal_postalAddress'])) $_SESSION['account']->personal_postalAddress = $_POST['f_personal_postalAddress']; else $_SESSION['account']->personal_postalAddress = ""; if (isset($_POST['f_personal_employeeType'])) $_SESSION['account']->personal_employeeType = $_POST['f_personal_employeeType']; else $_SESSION['account']->personal_employeeType = ""; // Check if values are OK and set automatic values. if not error-variable will be set list($values, $errors) = checkpersonal($_SESSION['account'], $_SESSION['account']->type); // account.inc if (is_object($values)) { while (list($key, $val) = each($values)) // Set only defined values if ($val) $_SESSION['account']->$key = $val; } // Check which part Site should be displayed next if ($_POST['back']) $select_local = 'quota'; else if ($_POST['next']) if ($errors=='') $select_local = 'final'; else $select_local = 'personal'; break; case 'final': // Write all general values into $_SESSION['account'] if ($_POST['f_final_changegids']) $_SESSION['final_changegids'] = $_POST['f_final_changegids'] ; // Check which part Site should be displayed next if ($_POST['back']) switch ($_SESSION['account']->type) { case 'user': $select_local = 'personal'; break; case 'group': $select_local = 'quota'; break; case 'host': $select_local = 'samba'; break; } break; case 'finish': // Check if pdf-file should be created if ($_POST['outputpdf']) { createUserPDF(array($_SESSION['account'])); $select_local = 'pdf'; } break; } if ( $_POST['create'] ) { // Create-Button was pressed // Create or modify an account switch ($_SESSION['account']->type) { case 'user': if ($_SESSION['account_old']) $result = modifyuser($_SESSION['account'],$_SESSION['account_old']); else $result = createuser($_SESSION['account']); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; else $select_local = 'final'; break; case 'group': if ($_SESSION['account_old']) $result = modifygroup($_SESSION['account'],$_SESSION['account_old']); else $result = creategroup($_SESSION['account']); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; else $select_local = 'final'; break; case 'host': if ($_SESSION['account_old']) $result = modifyhost($_SESSION['account'],$_SESSION['account_old']); else $result = createhost($_SESSION['account']); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; else $select_local = 'final'; break; } } // Set selected page to general if no page was defined. should only true if account.php wasn't called by itself if (!$select_local) $select_local='general'; // Reset variables if recreate-button was pressed if ($_POST['createagain']) { $select_local='general'; $_SESSION['account']=""; } // Set selected page to backmain (Back to main listmenu) else { if ($_POST['backmain']) { $select_local='backmain'; } else { // Set selected page to load (load profile) if ($_POST['load']) $select_local='load'; else { // Set selected page to save (save profile) if ($_POST['save']) $select_local='save'; } } } if ($_POST['groupmembers']) $select_local = 'groupmembers'; if ($select_local != 'pdf') { // Write HTML-Header and part of Table echo $_SESSION['header']; echo ""; echo _("Create new Account"); echo "\n". "\n". "\n". "\n"; } switch ($select_local) { // backmain = back to lists // load = load profile // save = save profile case 'backmain': // unregister sessionvar and select which list should be shown switch ( $_SESSION['account']->type ) { case 'user' : echo "\n"; break; case 'group' : echo "\n"; break; case 'host' : echo "\n"; break; } break; case 'load': // load profile switch ( $_SESSION['account']->type ) { case 'user': $_SESSION['account'] = loadUserProfile($_POST['f_general_selectprofile']); break; case 'host': $_SESSION['account'] = loadHostProfile($_POST['f_general_selectprofile']); break; case 'group': $_SESSION['account'] = loadGroupProfile($_POST['f_general_selectprofile']); break; } // select general page after group has been loaded $select_local='general'; break; case 'save': // save profile switch ( $_SESSION['account']->type ) { case 'user': saveUserProfile($_SESSION['account'], $_POST['f_finish_safeProfile']); break; case 'host': saveHostProfile($_SESSION['account'], $_POST['f_finish_safeProfile']); break; case 'group': saveGroupProfile($_SESSION['account'], $_POST['f_finish_safeProfile']); break; } // select last page displayed before user is created $select_local='final'; break; } if ($select_local != 'pdf') { echo "\n"; echo "
\n"; echo "\n"; if (is_array($errors)) for ($i=0; $i'."\n".''."\n"; echo ''."\n"; break; case 'general': // General Account Settings // load list of all groups $groups = findgroups(); // Show page info echo '\n"; switch ( $_SESSION['account']->type ) { case 'user': // load list of profiles $profilelist = getUserProfiles(); // Create HTML-page echo '\n'."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; break; case 'unix': // Unix Password Settings // decrypt password if ($_SESSION['account']->unix_password != '') { $iv = base64_decode($_COOKIE["IV"]); $key = base64_decode($_COOKIE["Key"]); $password = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, base64_decode($_SESSION['account']->unix_password), MCRYPT_MODE_ECB, $iv); $password = str_replace(chr(00), '', $password); } $date = getdate ($_SESSION['account']->unix_pwdexpire); echo ''."\n".''; switch ( $_SESSION['account']->type ) { case 'user' : echo ''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; break; case 'samba': // Samba Settings echo ''."\n"; // decrypt password // decrypt password if ($_SESSION['account']->smb_password != '') { $iv = base64_decode($_COOKIE["IV"]); $key = base64_decode($_COOKIE["Key"]); $password = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, base64_decode($_SESSION['account']->smb_password), MCRYPT_MODE_ECB, $iv); $password = str_replace(chr(00), '', $password); } if ($_SESSION['config']->samba3 == 'yes') $samba3domains = $_SESSION['ldap']->search_domains($_SESSION[config]->get_domainSuffix()); switch ( $_SESSION['account']->type ) { case 'user': // Set Account is samba-workstation to false $canchangedate = getdate($_SESSION['account']->smb_pwdcanchange); $mustchangedate = getdate($_SESSION['account']->smb_pwdmustchange); $_SESSION['account']->smb_flagsW = 0; echo ''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; break; case 'group': echo ''."\n".''."\n".''."\n".''."\n".''."\n"; break; case 'host': // set smb_flgasW true because account is host echo ''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; break; } echo ''."\n"; break; case 'quota': // Quota Settings echo ''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; echo ''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; $i=0; while ($_SESSION['account']->quota[$i][0]) { echo ''; // used blocks echo ''; // blocks soft limit echo ''; // blocks hard limit echo ''; // block grace period echo ''; // used inodes echo ''; // inodes soft limit echo ''; // inodes hard limit echo ''; // inodes grace period $i++; } echo ''."\n"; break; case 'personal': // Personal Settings echo ''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; break; case 'final': // Final Settings echo ''."\n"; switch ( $_SESSION['account']->type ) { case 'user' : if (($_SESSION['account_old']) && ($_SESSION['account']->general_uidNumber != $_SESSION['account_old']->general_uidNumber)) { echo ''; StatusMessage ('INFO', _('UID-number has changed. You have to run the following command as root in order to change existing file-permissions:'), 'find / -gid ' . $_SESSION['account_old' ]->general_uidNumber . ' -exec chown ' . $_SESSION['account']->general_uidNumber . ' {} \;'); echo ''."\n"; } if (($_SESSION['account_old']) && ($_SESSION['account']->general_homedir != $_SESSION['account_old']->general_homedir)) { echo ''; StatusMessage ('INFO', _('Home Directory has changed. You have to run the following command as root in order to change the existing homedirectory:'), 'mv ' . $_SESSION['account_old' ]->general_homedir . ' ' . $_SESSION['account']->general_homedir); echo ''."\n"; } if (isset($_SESSION['account_old']->general_objectClass)) { if (!in_array('posixAccount', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass posixAccount not found.'), _('Have to recreate entry.')); echo "\n"; } if (!in_array('shadowAccount', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass shadowAccount.'), _('Have to recreate entry.')); echo "\n"; } if (!in_array('inetOrgPerson', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass inetOrgPerson not found.'), _('Have to recreate entry.')); echo "\n"; } if ($_SESSION['config']->samba3 == 'yes') { if (!in_array('sambaSamAccount', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass sambaSamAccount not found.'), _('Have to recreate entry.')); echo "\n"; }} else if (!in_array('sambaAccount', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass sambaAccount not found.'), _('Have to recreate entry.')); echo "\n"; } } break; case 'group' : if (($_SESSION['account_old']) && ($_SESSION['account']->general_uidNumber != $_SESSION['account_old']->general_uidNumber)) { echo ''; StatusMessage ('INFO', _('GID-number has changed. You have to run the following command as root in order to change existing file-permissions:'), 'find / -gid ' . $_SESSION['account_old' ]->general_uidNumber . ' -exec chgrp ' . $_SESSION['account']->general_uidNumber . ' {} \;'); echo ''."\n"; echo ''."\n"; } if (isset($_SESSION['account_old']->general_objectClass)) { if (($_SESSION['config']->samba3 == 'yes') && (!in_array('sambaGroupMapping', $_SESSION['account_old']->general_objectClass))) { echo ''; StatusMessage('WARN', _('ObjectClass sambaGroupMapping not found.'), _('Have to recreate entry.')); echo "\n"; } if (!in_array('posixGroup', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass posixGroup not found.'), _('Have to recreate entry.')); echo "\n"; } } break; case 'host': if (($_SESSION['account_old']) && ($_SESSION['account']->general_uidNumber != $_SESSION['account_old']->general_uidNumber)) { echo ''; StatusMessage ('INFO', _('UID-number has changed. You have to run the following command as root in order to change existing file-permissions:'), 'find / -gid ' . $_SESSION['account_old' ]->general_uidNumber . ' -exec chown ' . $_SESSION['account']->general_uidNumber . ' {} \;'); echo ''."\n"; } if (isset($_SESSION['account_old']->general_objectClass)) { if (!in_array('posixAccount', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass posixAccount not found.'), _('Have to recreate entry.')); echo "\n"; } if (!in_array('shadowAccount', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass shadowAccount not found.'), _('Have to recreate entry.')); echo "\n"; } if (!in_array('account', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass account not found.'), _('Have to recreate entry.')); echo "\n"; } if ($_SESSION['config']->samba3 == 'yes') { if (!in_array('sambaSamAccount', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass sambaSamAccount not found.'), _('Have to recreate entry.')); echo "\n"; }} else if (!in_array('sambaAccount', $_SESSION['account_old']->general_objectClass)) { echo ''; StatusMessage('WARN', _('ObjectClass sambaAccount not found.'), _('Have to recreate entry.')); echo "\n"; } } break; } echo ''."\n".''."\n".''."\n".''."\n"; break; case 'finish': // Final Settings echo ''."\n"; switch ( $_SESSION['account']->type ) { case 'user' : echo ''."\n".''."\n".''."\n"; break; case 'group' : echo ''."\n".''."\n"; break; case 'host' : echo ''."\n".''."\n"; break; } break; case 'backmain': // unregister sessionvar and select which list should be shown switch ( $_SESSION['account']->type ) { case 'user' : echo '\n"; break; case 'group' : echo '\n"; break; case 'host' : echo '\n"; break; } if (isset($_SESSION['shelllist'])) unset($_SESSION['shelllist']); if (isset($_SESSION['account'])) unset($_SESSION['account']); if (isset($_SESSION['account_old'])) unset($_SESSION['account_old']); break; } // Print end of HTML-Page if ($select_local != 'pdf') echo '
'; echo _('Group members'); echo ''."\n"; echo _('Available users'); echo '
'; echo ''."\n"; echo '

'."\n"; echo '
'. ''. ''. '
'; echo _('General properties'); echo "
'; echo _('Username').'*'; echo "". ''. ''. ''._('Help').''. '
'; echo _('UID number'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Surname').'*'; echo ''. ''. ''. ''._('Help').''. '
'; echo _('Given name').'*'; echo ''. ''. ''. ''._('Help').''. '
'; echo _('Primary group').'*'; echo ''. ''._('Help').''. '
'; echo _('Additional groups'); echo ''. ''._('Help').''. '
'; echo _('Home directory').'*'; echo ''. ''. ''._('Help').''. '
'; echo _('Gecos'); echo ''. ''. ''._('Help').''. '
'; echo _('Login shell').'*'; echo ''. ''._('Help').''. '
'; echo _('Suffix'); echo ''._('Help').''. '
'; echo _('Values with * are required'); echo '
'. ''. ''; break; case 'group': // load list of profiles $profilelist = getGroupProfiles(); // Create HTML-page echo '
'; echo _('Groupname').'*'; echo ''. ''. ''. ''._('Help').''. '
'; echo _('GID number'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Gecos'); echo ''. ''. ''._('Help').''. '
'; echo _('Suffix'); echo ''._('Help').''. '
'; echo _('Values with * are required'); echo '
'. ''. ''; break; case 'host': // load list of profiles $profilelist = getHostProfiles(); // Create HTML-page echo '
'; echo _('Host name').'*'; echo ''. ''. ''. ''._('Help').''. '
'; echo _('UID number'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Primary group').'*'; echo ''. ''._('Help').''. '
'; echo _('Gecos'); echo ''. ''. ''._('Help').''. '
'; echo _('Suffix'); echo ''._('Help').''. '
'; echo _('Values with * are required'); echo '
'. ''. ''; break; } echo ''. ''. '
'; echo _('Unix properties'); echo '
'; echo _('Password'); echo ''. ''. ''. '
'; echo _('Use no password'); echo 'unix_password_no) echo ' checked '; echo '>'. ''._('Help').''. '
'; echo _('Password warn'); echo ''. ''. ''._('Help').''. '
'; echo _('Password expire'); echo ''. ''. ''._('Help').''. '
'; echo _('Maximum password age'); echo ''. ''. ''._('Help').''. '
'; echo _('Minimum password age'); echo ''. ''. ''._('Help').''. '
'; echo _('Expire date'); echo ''. ''._('Help').''. '
'; echo _('Account deactivated'); echo 'unix_deactivated) echo ' checked '; echo '>'. ''._('Help').''. '
'; echo _('Unix workstations'); echo ''. ''. ''._('Help').''. '
'; echo _('Values with * are required'); echo '
'; break; case 'group' : echo '
'; echo _('Group members'); echo ''; //echo ''; echo ''; echo ''. ''._('Help').''. '
'; break; } echo '
'. ''. ''. ''. '
'; echo _('Samba properties'); echo '
'; echo ''. ''. ''. ''. ''. ''; echo _('Samba password'); echo ''. '
'; echo _('Use unix password'); echo 'smb_useunixpwd) echo ' checked '; echo '>'. ''._('Help').''; echo '
'; echo _('Use no password'); echo 'smb_password_no) echo ' checked '; echo '>'. ''._('Help').''. '
'; echo _('Password does not expire'); echo 'smb_flagsX) echo ' checked '; echo '>'. ''._('Help').''. '
'; echo _('User can change password'); echo ''; echo ''._('Help').''. '
'; echo _('User must change password'); echo ''; echo ''._('Help').''. '
'; echo _('Account is deactivated'); echo 'smb_flagsD) echo ' checked '; echo '>'. ''._('Help').''. '
'; echo _('Home drive'); echo ''. ''._('Help').''. '
'; echo _('Home path'); echo ''. ''. ''._('Help').''. '
'; echo _('Profile path'); echo ''. ''. ''._('Help').''. '
'; echo _('Script path'); echo ''. ''. ''._('Help').''. '
'; echo _('Samba workstations'); echo ''. ''. ''._('Help').''. '
'; echo _('Windows groupname'); echo ''. ''._('Help').''. '
'; echo _('Domain'); if ($_SESSION['config']->samba3 == 'yes') { echo ''; } else { echo ''; } echo ''._('Help').'
'; echo _('Windows groupname'); echo ''. ''._('Help').''. '
'; echo _('Domain'); echo ''._('Help').'
'; $_SESSION['account']->smb_flagsW = 1; if ($_SESSION['account']->smb_password_no) echo ''; echo ''; echo _('Password'); echo ''; if ($_SESSION['account_old']) { echo ''; } echo '
'; echo _('Account is deactivated'); echo 'smb_flagsD) echo ' checked '; echo '>'. ''._('Help').''. '
'; echo '
'; echo _('Domain'); if ($_SESSION['config']->samba3 == 'yes') { echo ''; } else { echo ''; } echo ''._('Help').'
'; echo _('Quota properties'); echo '
'; echo _('Mountpoint'); echo ''; echo _('Used blocks'); echo ''; echo _('Soft block limit'); echo ''; echo _('Hard block limit'); echo ''; echo _('Grace block period'); echo ''; echo _('Used inodes'); echo ''; echo _('Soft inode limit'); echo ''; echo _('Hard inode limit'); echo ''; echo _('Grace inode period'); echo '
'._('Help').''._('Help').''. ''._('Help').''._('Help').''. ''._('Help').''._('Help').''. ''._('Help').''._('Help').''. ''._('Help').'
'.$_SESSION['account']->quota[$i][0].''.$_SESSION['account']->quota[$i][1].''.$_SESSION['account']->quota[$i][4].''.$_SESSION['account']->quota[$i][5].''.$_SESSION['account']->quota[$i][8].'
'. ''. ''. ''. '
'; echo _('Personal properties'); echo '
'; echo _('Title'); echo ''. ' '; echo $_SESSION['account']->general_surname . ' ' . $_SESSION['account']->general_givenname . ''. ''._('Help').''. '
'; echo _('Employee type'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Street'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Postal code'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Postal address'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Telephone number'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Mobile number'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('Fax number'); echo ''. ''. ''. ''._('Help').''. '
'; echo _('eMail address'); echo ''. ''. ''. ''._('Help').''. '
'. ''. ''. ''. '
'; if ($_SESSION['account_old']) echo _('Modify'); else echo _('Create'); echo '
'; echo ''; echo _('Change GID-Number of all users in group to new value'); echo '
'. ''. ''. ''. ''._('Help').''. ''. ''. '
'; echo _('Success'); echo '
'; echo _('User '); echo $_SESSION['account']->general_username; if ($_SESSION['account_old']) echo ' '._('has been modified').'.'; else echo ' '._('has been created').'.'; if (!$_SESSION['account_old']) { echo ''; } echo ''. ''. ''. ''. '
'; echo _('Group').' '; echo $_SESSION['account']->general_username; if ($_SESSION['account_old']) echo ' '._('has been modified').'.'; else echo ' '._('has been created').'.'; echo '
'; if (!$_SESSION['account_old']) { echo' '; } echo ''. ''. '
'; echo _('Host'); echo ' '.$_SESSION['account']->general_username.' '; if ($_SESSION['account_old']) echo ' '._('has been modified').'.'; else echo ' '._('has been created').'.'; echo '
'; if (!$_SESSION['account_old']) { echo ''; } echo ''."\n".''. ''. '
'; echo _('Please press here if meta-refresh didn\'t work.'); echo "
'; echo _('Please press here if meta-refresh didn\'t work.'); echo "
'; echo _('Please press here if meta-refresh didn\'t work.'); echo "
'; ?>