Migration

This commit is contained in:
2016-02-21 01:33:05 +01:00
commit 6db8a86a48
386 changed files with 17311 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
<?php
/*
Copyright (C) 2007 Mercier Benjamin
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
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
// Librairie contenant la suppression des domaines
if ( VerifPOST("Nom", "#^[a-z0-9._-]+@[a-z0-9._-]{2,15}\.[a-z]{2,4}$#", 7, 60) == "ChaineValide" )
{
if ( VerifPOST("Confirmation", "#^oui$#", 3, 3) == "ChaineValide" )
{
$VerifExistence = $MySql->Select ("*", "email", "Nom='".$_POST['Nom']."'", "", "", "", "");
if ( $VerifExistence != FALSE )
{
if ( $VerifExistence[0]["Utilisateur"] == $_SESSION['Utilisateur'] )
{
if ( $VerifExistence[0]["Status"] == "2" )
{
$UpdateDB = $MySql->Update ("email", "Status", "3", "Nom='".$_POST['Nom']."'");
Redirect ('Page-Email-Recapitulatif.html');
}
else
{
$_SESSION['Resultat'] = "Ce compte/alias n'est pas activé (ou deja en cours de suppression)";
$_SESSION['Lien'] = "Page-Email-Suppression.html";
Redirect ('resultat.html');
}
}
else
{
$_SESSION['Resultat'] = "Email en cours de suppression<br />(Non, je plaisante :D)";
$_SESSION['Lien'] = "http://www.perdu.com";
Redirect ('resultat.html');
}
}
else
{
$_SESSION['Resultat'] = "Cet email n'existe pas";
$_SESSION['Lien'] = "Page-Email-Suppression.html";
Redirect ('resultat.html');
}
}
else
{
$_SESSION['Resultat'] = "Le code de confirmation est incorrect";
$_SESSION['Lien'] = "Page-Email-Suppression.html";
Redirect ('resultat.html');
}
}
else
{
$_SESSION['Resultat'] = "Aucun compte/alias n'est selectioné";
$_SESSION['Lien'] = "Page-Email-Suppression.html";
Redirect ('resultat.html');
}
?>