array ("request","integer",""), "mail_id" => array ("request","integer",""), "pass" => array ("request","string",""), "passconf" => array("request","string",""), "is_enabled" => array("request","string",""), "enable" => array("request","string","") ); getFields($fields); /* * checking the password */ if(isset($pass) && $pass != ""){ if($pass != $passconf){ $error = _("Password do not match"); include ("mail_edit.php"); exit(); }else{ //adding the password $mail->setpasswd($mail_id,$pass); header ("Location: /mail_properties.php?mail_id=$mail_id"); } } /* * checking the activation state of the mail * redirecting according to it. */ if($is_enabled == 1){ if(intval($enable)==0){ //desactivation $mail->disable($mail_id); header ("Location: /mail_properties.php?mail_id=$mail_id"); }else{ $error = _("Already Activated"); include ("mail_edit.php"); exit(); } }elseif($is_enabled == 0){ if(intval($enable)==0){ // c'est dja inactif $error = _("Already disabled "); include ("mail_edit.php"); exit(); }else{ //Activation $mail->enable($mail_id); header ("Location: /mail_properties.php?mail_id=$mail_id"); } }