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.
*/
$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;?>