scriptServer) && (!$_GET['DN'])) getquotas(); } if ( $_GET['DN'] ) { // $DN is true if an entry should be modified and account.php was called from Users/Group/Host-List $_SESSION['modify'] = 1; $DN = str_replace("\'", '',$_GET['DN']); switch ($_SESSION['type2']) { case 'user': loaduser($DN); break; case 'group': loadgroup($DN); if (!session_is_registered('final_changegids')) session_register('final_changegids'); else $_SESSION['final_changegids'] = ''; break; case 'host': loadhost($DN); break; } } switch ($_POST['select']) { case 'general': if (!$_POST['load']) { // No Profile was loaded // Write alle values in temporary object if ($_POST['f_general_username']) $_SESSION['account_temp']->general_username = $_POST['f_general_username']; else $_SESSION['account_temp']->general_username = $_POST['f_general_username']; if ($_POST['f_general_surname']) $_SESSION['account_temp']->general_surname = $_POST['f_general_surname']; else $_SESSION['account_temp']->general_surname = ""; if ($_POST['f_general_givenname']) $_SESSION['account_temp']->general_givenname = $_POST['f_general_givenname']; else $_SESSION['account_temp']->general_givenname = ""; if ($_POST['f_general_uidNumber']) $_SESSION['account_temp']->general_uidNumber = $_POST['f_general_uidNumber']; else $_SESSION['account_temp']->general_uidNumber = ""; if ($_POST['f_general_group']) $_SESSION['account_temp']->general_group = $_POST['f_general_group']; if ($_POST['f_general_groupadd']) $_SESSION['account_temp']->general_groupadd = $_POST['f_general_groupadd']; if ($_POST['f_general_homedir']) $_SESSION['account_temp']->general_homedir = $_POST['f_general_homedir']; else $_SESSION['account_temp']->general_homedir = ""; if ($_POST['f_general_shell']) $_SESSION['account_temp']->general_shell = $_POST['f_general_shell']; if ($_POST['f_general_gecos']) $_SESSION['account_temp']->general_gecos = $_POST['f_general_gecos']; else $_SESSION['account_temp']->general_gecos = ""; // Check Values $error = checkglobal(); // account.inc // Check which part Site should be displayd if ($_POST['next'] && ($error=="0")) switch ($_SESSION['type2']) { case 'user': $select_local = 'unix'; break; case 'group': $select_local = 'quota'; break; case 'host': $select_local = 'unix'; break; } } break; case 'unix': // Write alle values in temporary object if ($_POST['f_unix_password']) $_SESSION['account_temp']->unix_password = $_POST['f_unix_password']; else $_SESSION['account_temp']->unix_password = ''; if ($_POST['genpass']) { $_SESSION['account_temp']->unix_password = genpasswd(); } if ($_POST['f_unix_password_no']) $_SESSION['account_temp']->unix_password_no = $_POST['f_unix_password_no']; else $_SESSION['account_temp']->unix_password_no = false; if ($_POST['f_unix_pwdwarn']) $_SESSION['account_temp']->unix_pwdwarn = $_POST['f_unix_pwdwarn']; else $_SESSION['account_temp']->unix_pwdwarn = ''; if ($_POST['f_unix_pwdallowlogin']) $_SESSION['account_temp']->unix_pwdallowlogin = $_POST['f_unix_pwdallowlogin']; else $_SESSION['account_temp']->unix_pwdallowlogin = ''; if ($_POST['f_unix_pwdmaxage']) $_SESSION['account_temp']->unix_pwdmaxage = $_POST['f_unix_pwdmaxage']; else $_SESSION['account_temp']->unix_pwdmaxage = ''; if ($_POST['f_unix_pwdminage']) $_SESSION['account_temp']->unix_pwdminage = $_POST['f_unix_pwdminage']; else $_SESSION['account_temp']->unix_pwdminage = ''; if ($_POST['f_unix_pwdexpire_day']) $_SESSION['account_temp']->unix_pwdexpire_day = $_POST['f_unix_pwdexpire_day']; if ($_POST['f_unix_pwdexpire_mon']) $_SESSION['account_temp']->unix_pwdexpire_mon = $_POST['f_unix_pwdexpire_mon']; if ($_POST['f_unix_pwdexpire_yea']) $_SESSION['account_temp']->unix_pwdexpire_yea = $_POST['f_unix_pwdexpire_yea']; if ($_POST['f_unix_deactivated']) $_SESSION['account_temp']->unix_deactivated = $_POST['f_unix_deactivated']; else $_SESSION['account_temp']->unix_deactivated = false; // Check Values $error = checkunix(); // account.inc // Check which part Site should be displayd if ($_POST['genpass']) $select_local = 'unix'; if ($_POST['respass']) { $_SESSION['account_temp']->unix_password_no=1; $_SESSION['account_temp']->smb_password_no=1; $_SESSION['account']->unix_password_no=1; $_SESSION['account']->smb_password_no=1; } if (($_POST['next']) && ($error=="0")) $select_local = 'samba'; else $select_local = 'unix'; if ($_POST['back']) $select_local = 'general'; break; case 'samba': // Write alle values in temporary object if ($_POST['f_smb_password']) $_SESSION['account_temp']->smb_password = $_POST['f_smb_password']; else $_SESSION['account_temp']->smb_password = ""; if ($_POST['f_smb_password_no']) $_SESSION['account_temp']->smb_password_no = $_POST['f_smb_password_no']; else $_SESSION['account_temp']->smb_password_no = false; if ($_POST['f_smb_useunixpwd']) $_SESSION['account_temp']->smb_useunixpwd = $_POST['f_smb_useunixpwd']; else $_SESSION['account_temp']->smb_useunixpwd = false; if ($_POST['f_smb_pwdcanchange']) $_SESSION['account_temp']->smb_pwdcanchange = $_POST['f_smb_pwdcanchange']; else $_SESSION['account_temp']->smb_pwdcanchange = false; if ($_POST['f_smb_pwdmustchange']) $_SESSION['account_temp']->smb_pwdmustchange = $_POST['f_smb_pwdmustchange']; else $_SESSION['account_temp']->smb_pwdmustchange = false; if ($_POST['f_smb_homedrive']) $_SESSION['account_temp']->smb_homedrive = $_POST['f_smb_homedrive']; if ($_POST['f_smb_scriptpath']) $_SESSION['account_temp']->smb_scriptpath = $_POST['f_smb_scriptpath']; else $_SESSION['account_temp']->smb_scriptpath = ''; if ($_POST['f_smb_smbuserworkstations']) $_SESSION['account_temp']->smb_smbuserworkstations = $_POST['f_smb_smbuserworkstations']; else $_SESSION['account_temp']->smb_smbuserworkstations = ""; if ($_POST['f_smb_smbhome']) $_SESSION['account_temp']->smb_smbhome = stripslashes($_POST['f_smb_smbhome']); else $_SESSION['account_temp']->smb_smbhome = ""; if ($_POST['f_smb_profilePath']) $_SESSION['account_temp']->smb_profilePath = stripslashes($_POST['f_smb_profilePath']); else $_SESSION['account_temp']->smb_profilePath = ""; if ($_POST['f_smb_domain']) $_SESSION['account_temp']->smb_domain = $_POST['f_smb_domain']; else $_SESSION['account_temp']->smb_domain = false; if ($_POST['f_smb_flagsW']) $_SESSION['account_temp']->smb_flagsW = $_POST['f_smb_flagsW']; else $_SESSION['account_temp']->smb_flagsW = false; if ($_POST['f_smb_flagsD']) $_SESSION['account_temp']->smb_flagsD = $_POST['f_smb_flagsD']; else $_SESSION['account_temp']->smb_flagsD = false; if ($_POST['f_smb_flagsX']) $_SESSION['account_temp']->smb_flagsX = $_POST['f_smb_flagsX']; else $_SESSION['account_temp']->smb_flagsX = false; // Check Values $error = checksamba(); // account.inc // Check which part Site should be displayd if ($_POST['back']) $select_local = 'unix'; if ($_POST['next']) { if ($error=="0") switch ($_SESSION['type2']) { case 'user': $select_local = 'quota'; break; case 'host': $select_local = 'final'; break; } else $select_local = 'samba'; } break; case 'quota': $i=0; while ($_SESSION['account']->quota[$i][0]) { $_SESSION['account_temp']->quota[$i][2] = $_POST['f_quota_'.$i.'_2']; $_SESSION['account_temp']->quota[$i][3] = $_POST['f_quota_'.$i.'_3']; $_SESSION['account_temp']->quota[$i][6] = $_POST['f_quota_'.$i.'_6']; $_SESSION['account_temp']->quota[$i][7] = $_POST['f_quota_'.$i.'_7']; $i++; } $error = checkquota(); // Check which part Site should be displayd if ($_POST['back']) switch ($_SESSION['type2']) { case 'user': $select_local = 'samba'; break; case 'group': $select_local = 'general'; break; } if ($_POST['next']) { if ($error=="0") switch ($_SESSION['type2']) { case 'user': $select_local = 'personal'; break; case 'group': $select_local = 'final'; break; } else $select_local = 'quota'; } break; case 'personal': if ($_POST['f_personal_title']) $_SESSION['account_temp']->personal_title = $_POST['f_personal_title']; else $_SESSION['account_temp']->personal_title = ""; if ($_POST['f_personal_mail']) $_SESSION['account_temp']->personal_mail = $_POST['f_personal_mail']; else $_SESSION['account_temp']->personal_mail = ""; if ($_POST['f_personal_telephoneNumber']) $_SESSION['account_temp']->personal_telephoneNumber = $_POST['f_personal_telephoneNumber']; else $_SESSION['account_temp']->personal_telephoneNumber = ""; if ($_POST['f_personal_mobileTelephoneNumber']) $_SESSION['account_temp']->personal_mobileTelephoneNumber = $_POST['f_personal_mobileTelephoneNumber']; else $_SESSION['account_temp']->personal_mobileTelephoneNumber = ""; if ($_POST['f_personal_facsimileTelephoneNumber']) $_SESSION['account_temp']->personal_facsimileTelephoneNumber = $_POST['f_personal_facsimileTelephoneNumber']; else $_SESSION['account_temp']->personal_facsimileTelephoneNumber = ""; if ($_POST['f_personal_street']) $_SESSION['account_temp']->personal_street = $_POST['f_personal_street']; else $_SESSION['account_temp']->personal_street = ""; if ($_POST['f_personal_postalCode']) $_SESSION['account_temp']->personal_postalCode = $_POST['f_personal_postalCode']; else $_SESSION['account_temp']->personal_postalCode = ""; if ($_POST['f_personal_postalAddress']) $_SESSION['account_temp']->personal_postalAddress = $_POST['f_personal_postalAddress']; else $_SESSION['account_temp']->personal_postalAddress = ""; if ($_POST['f_personal_employeeType']) $_SESSION['account_temp']->personal_employeeType = $_POST['f_personal_employeeType']; else $_SESSION['account_temp']->personal_employeeType = ""; // Check which part Site should be displayd $error = checkpersonal(); // account.inc if ($_POST['back'] && ($error=="0")) $select_local = 'quota'; if ($_POST['next'] && ($error=="0")) $select_local = 'final'; break; case 'final': if ($_POST['f_final_changegids']) $_SESSION['final_changegids'] = $_POST['f_final_changegids'] ; if ($_POST['back'] && ($error=="0")) switch ($_SESSION['type2']) { case 'user': $select_local = 'personal'; break; case 'group': $select_local = 'quota'; break; case 'host': $select_local = 'samba'; break; } break; } if ( $_POST['create'] ) { // Create-Button was pressed switch ($_SESSION['type2']) { case 'user': if ($_SESSION['modify']==1) $result = modifyuser(); else $result = createuser(); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; break; case 'group': if ($_SESSION['modify']==1) $result = modifygroup(); else $result = creategroup(); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; break; case 'host': if ($_SESSION['modify']==1) $result = modifyhost(); else $result = createhost(); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; break; } } // Write HTML-Header and part of Table echo '