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,59 @@
<?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.
*/
$CountAlias = $MySql->Count('id', 'email', "Utilisateur = '{$_SESSION['Utilisateur']}' AND Type = 'alias'");
?>
<h3>Ajouter un alias email</h3>
<p>
Un alias est une adresse email qui redirige tout le courriel vers un autre.
</p>
<p>
Les alias emails sont compatible uniquement avec les domaines externes.<br />
Avant d'ajouter un alias, veuillez au pr<70>alable lui d<>finir une redirection de <strong>type MX</strong> pointant vers <strong><?php echo gethostbyname('mail.kelio.org'); ?> (mail.kelio.org)</strong>. Dans le cas contraire, il vous sera impossible d'ajouter de compte.
</p>
<p>
L'alias sera cr<63><72> dans l'heure qui suit.
</p>
<?php if ( ($CountAlias < $_SESSION['Offre']['AliasEmail']) or ($_SESSION['Offre']['AliasEmail'] == '-1')): ?>
<div style="width: 500px; margin: auto">
<form action="execution-9.html" method="post">
<table width="500" cellpadding="5">
<tr>
<td style="width:100px">Courriel :</td>
<td style="width:400px"><input name="Nom" type="text" style="border: 0; border-bottom: #006633 1px solid; width:100%" maxlength="60" /></td>
</tr>
<tr>
<td>Pointage :</td>
<td><input name="Pointage" type="text" style="border: 0; border-bottom: #006633 1px solid; width:100%" maxlength="60" /></td>
</tr>
<tr>
<td>Commentaire :</td>
<td><input name="Commentaire" type="text" style="border: 0; border-bottom: #006633 1px solid; width:100%" maxlength="50" /></td>
</tr>
</table>
<div style="text-align: center; width: 100%; margin-top: 20px;">
<input type="submit" name="Submit" value="Cr<43>er l'alias email" style=" border: #006633 1px solid;" />
</div>
</form>
</div>
<?php else: ?>
<p>D<>sol<6F>, vous ne pouvez plus ajouter d'alias. Votre offre ne vous le permet pas.</p>
<?php endif;?>

View File

@@ -0,0 +1,59 @@
<?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.
*/
$CountMailbox = $MySql->Count('id', 'email', "Utilisateur = '{$_SESSION['Utilisateur']}' AND Type = 'compte'");
?>
<h3>Ajouter un compte email</h3>
<p>
Le compte sera heberg&eacute; par Kelio, vous pourrez y acc&eacute;der par <a href="http://webmail.kelio.org">notre webmail</a> ou via les protocoles IMAP/POP3 en utilisant le serveur <strong>mail.kelio.org</strong>.
</p>
<p>
Les comptes emails sont compatible uniquement avec les domaines externes.<br />
Avant d'ajouter un compte, veuillez au pr<70>alable lui d<>finir une redirection de <strong>type MX</strong> pointant vers <strong><?php echo gethostbyname('mail.kelio.org'); ?> (mail.kelio.org)</strong>. Dans le cas contraire, il vous sera impossible d'ajouter de compte.
</p>
<p>
Le compte sera cr<63><72> dans l'heure qui suit.
</p>
<?php if ( ($CountMailbox < $_SESSION['Offre']['CompteEmail']) or ($_SESSION['Offre']['CompteEmail'] == '-1')): ?>
<div style="width: 500px; margin: auto">
<form action="execution-8.html" method="post">
<table width="500" cellpadding="5">
<tr>
<td style="width:100px">Courriel :</td>
<td style="width:400px"><input name="Nom" type="text" style="border: 0; border-bottom: #006633 1px solid; width:100%" maxlength="60" /></td>
</tr>
<tr>
<td>Mot de passe :</td>
<td><input name="MotDePasse" type="text" style="border: 0; border-bottom: #006633 1px solid; width:100%" maxlength="9" /></td>
</tr>
<tr>
<td>Commentaire :</td>
<td><input name="Commentaire" type="text" style="border: 0; border-bottom: #006633 1px solid; width:100%" maxlength="50" /></td>
</tr>
</table>
<div style="text-align: center; width: 100%; margin-top: 20px;">
<input type="submit" name="Submit" value="Cr<43>er le compte email" style=" border: #006633 1px solid;" />
</div>
</form>
</div>
<?php else: ?>
<p>D<>sol<6F>, vous ne pouvez plus ajouter de compte. Votre offre ne vous le permet pas.</p>
<?php endif;?>

View File

@@ -0,0 +1,208 @@
<?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.
*/
$ListCompte = $MySql->Select ("*", "email", "Utilisateur='".$_SESSION['Utilisateur']."' AND Type='compte'", "", "", "", "");
$ListAlias = $MySql->Select ("*", "email", "Utilisateur='".$_SESSION['Utilisateur']."' AND Type='alias'", "", "", "", "");
$CountCompte = count($ListCompte);
$CountAlias = count ($ListAlias);
if ( $ListCompte == FALSE ) { $CountCompte = 0; }
if ( $ListAlias == FALSE ) { $CountAlias = 0; }
?>
<h3>R<>capitulatif de comptes et alias e-mail
<a style="border: 0px;" href="http://doc.kelio.org/utiliser_la_messagerie"><img style="vertical-align:middle; border: 0px;" src="image/icons/question.png" alt="Aide" title="Aide" /></a>
</h3>
<p>
Actuellement, vous avez <?php echo $CountCompte; ?><?php if ($_SESSION['Offre']['CompteEmail'] != '-1'):?>/<?php echo $_SESSION['Offre']['CompteEmail']?><?php endif; ?> compte(s) email et <?php echo $CountAlias; ?><?php if ($_SESSION['Offre']['AliasEmail'] != '-1'):?>/<?php echo $_SESSION['Offre']['AliasEmail']; ?><?php endif;?> alias.
</p>
<p>
Passez votre souris sur le commentaire pour le voir en entier.<br /><br />
Le statut "Cr<43>ation" signifie que votre compte/alias est en attente de cr<63>ation par notre robot. <br />
Normalement, cette op<6F>ration prend moins d'une heure.<br />
Il en est de meme pour le statut "Suppression".
</p>
<h4>Liste des comptes email</h4>
<div style="border:#006633 1px solid; width: 90%; margin: auto; margin-top: 15px;">
<table style="width:100%;">
<tr>
<td class="Tableau1" style="text-align: center; width: 20%;"><strong>Nom</strong></td>
<td class="Tableau1" style="text-align: center; width: 15%;"><strong>Date</strong></td>
<td class="Tableau1" style="text-align: center; width: 10%;"><strong>Statut</strong></td>
<td class="Tableau1" style="text-align: center; width: 15%;"><strong>Mot de passe</strong></td>
<td class="Tableau1" style="text-align: center; width: 25%;"><strong>Commentaire</strong></td>
</tr>
<?php
if ( $ListCompte == FALSE )
{
echo '
<tr>
<td colspan="6" class="Tableau1" style="text-align:center"><strong>Il n\'y a aucun email pour le moment.</strong></td>
</tr>';
}
else
{
for ($i=0; $i < $CountCompte; $i++)
{
if ( $ListCompte[$i]["Status"] == "1" )
{
$Status = "Creation";
}
elseif ( $ListCompte[$i]["Status"] == "2" )
{
$Status = "Activ<69>";
}
elseif ( $ListCompte[$i]["Status"] == "3" )
{
$Status = "Suppression";
}
else
{
$Status = "Erreur";
}
if ( strlen($ListCompte[$i]["Commentaire"]) > 19 )
{
$Commentaire = substr ($ListCompte[$i]["Commentaire"], 0, 19)." ...";
}
elseif ( strlen($ListCompte[$i]["Commentaire"]) == 0 )
{
$Commentaire = "-";
}
else
{
$Commentaire = $ListCompte[$i]["Commentaire"];
}
if ( strlen($ListCompte[$i]["Nom"]) > 16 )
{
$Nom = substr ($ListCompte[$i]["Nom"], 0, 16)." ...";
}
else
{
$Nom = $ListCompte[$i]["Nom"];
}
echo '
<tr>
<td class="Tableau1" style="text-align: center;"><span style="cursor:pointer;" title="'.$ListCompte[$i]["Nom"].'">'.$Nom.'</span></td>
<td class="Tableau1" style="text-align: center;"><span style="cursor: pointer" title="'.date ("d-m-Y H:i:s",$ListCompte[$i]["DateDeCreation"]).'">'.date("d-m-Y", $ListCompte[$i]["DateDeCreation"]).'</span></td>
<td class="Tableau1" style="text-align: center;">'.$Status.'</td>
<td class="Tableau1" style="text-align: center;">'.$ListCompte[$i]["Password"].'</td>
<td class="Tableau1" style="text-align: center;">'.$Commentaire.'</td>
</tr>';
}
}
?>
</table>
</div>
<br />
<h4>Liste des alias email</h4>
<div style="border:#006633 1px solid; width: 90%; margin: auto; margin-top: 15px;">
<table style="width:100%;">
<tr>
<td class="Tableau1" style="text-align: center; width: 25%;"><strong>Nom</strong></td>
<td class="Tableau1" style="text-align: center; width: 15%;"><strong>Date</strong></td>
<td class="Tableau1" style="text-align: center; width: 10%;"><strong>Statut</strong></td>
<td class="Tableau1" style="text-align: center; width: 25%;"><strong>Destination</strong></td>
<td class="Tableau1" style="text-align: center; width: 25%;"><strong>Commentaire</strong></td>
</tr>
<?php
if ( $ListAlias == FALSE )
{
echo '
<tr>
<td colspan="6" class="Tableau1" style="text-align:center"><strong>Il n\'y a aucun alias pour le moment.</strong></td>
</tr>';
}
else
{
for ($i=0; $i < $CountAlias; $i++)
{
if ( $ListAlias[$i]["Status"] == "1" )
{
$Status = "Creation";
}
elseif ( $ListAlias[$i]["Status"] == "2" )
{
$Status = "Activ<69>";
}
elseif ( $ListAlias[$i]["Status"] == "3" )
{
$Status = "Suppression";
}
else
{
$Status = "Erreur";
}
if ( strlen($ListAlias[$i]["Nom"]) > 16 )
{
$Nom = substr ($ListAlias[$i]["Nom"], 0, 16)." ...";
}
else
{
$Nom = $ListAlias[$i]["Nom"];
}
if ( strlen($ListAlias[$i]["Pointage"]) > 16 )
{
$Pointage = substr ($ListAlias[$i]["Pointage"], 0, 16)." ...";
}
else
{
$Pointage = $ListAlias[$i]["Pointage"];
}
if ( strlen($ListAlias[$i]["Commentaire"]) > 16 )
{
$Commentaire = substr ($ListCompte[$i]["Commentaire"], 0, 16)." ...";
}
elseif ( strlen($ListAlias[$i]["Commentaire"]) == 0 )
{
$Commentaire = "-";
}
else
{
$Commentaire = $ListAlias[$i]["Commentaire"];
}
echo '
<tr>
<td class="Tableau1" style="text-align: center;"><span style="cursor:pointer;" title="'.$ListAlias[$i]["Nom"].'">'.$Nom.'</span></td>
<td class="Tableau1" style="text-align: center;"><span style="cursor: pointer" title="'.date ("d-m-Y H:i:s",$ListAlias[$i]["DateDeCreation"]).'">'.date("d-m-Y", $ListAlias[$i]["DateDeCreation"]).'</span></td>
<td class="Tableau1" style="text-align: center;">'.$Status.'</td>
<td class="Tableau1" style="text-align: center;"><span style="cursor:pointer;" title="'.$ListAlias[$i]["Pointage"].'">'.$Pointage.'</span></td>
<td class="Tableau1" style="text-align: center;"><span style="cursor:pointer;" title="'.$ListAlias[$i]["Commentaire"].'">'.$Commentaire.'</span></td>
</tr>';
}
}
?>
</table>
</div>

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.
*/
$ListTable = $MySql->Select ("*", "email", "Utilisateur='".$_SESSION['Utilisateur']."' AND Status='2'", "", "", "", "");
?>
<h3>Supprimer un compte ou un alias</h3>
<p>
Avant de supprimer un compte email, assurez vous d'avoir fais une backup de toute vos donn<6E>es.
</p>
<p>
Une fois la suppression effectu<74>e, le compte/alias ne sera plus actif, et le serveur refusera alors tous courriels.
</p>
<div style="width: 500px; margin: auto">
<form action="execution-10.html" method="post">
<table width="500" cellpadding="5">
<tr>
<td style="width:150px">Email <20> supprimer :</td>
<td style="width:350px">
<select name="Nom" style="border: 0; border-bottom: #006633 1px solid; width:100%;">
<option selected="selected" value="">S<>lectionnez</option>
<?php
if ( $ListTable == FALSE)
{
$TotalEnregistement = 0;
}
else
{
$TotalEnregistement = count ($ListTable);
}
for ($i=0; $i < $TotalEnregistement; $i++)
{
echo "<option value='".$ListTable[$i]["Nom"]."'>".$ListTable[$i]["Nom"]." (".$ListTable[$i]["Type"].")</option>\n";
}
?>
</select>
</td>
</tr>
<tr>
<td>Tapez "oui" :</td>
<td><input name="Confirmation" type="text" style="border: 0; border-bottom: #006633 1px solid; width:100%;" maxlength="3" /></td>
</tr>
</table>
<div style="text-align: center; width: 100%; margin-top: 20px;">
<input type="submit" name="Submit" value="Supprimer l'email" style=" border: #006633 1px solid;" />
</div>
</form>
</div>