59 lines
2.6 KiB
PHP
Executable File
59 lines
2.6 KiB
PHP
Executable File
<?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é par Kelio, vous pourrez y accé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>.<br />
|
|
Vous pourrez envoyer des emails depuis votre client de messagerie en utilisant le protocole SMTP sans authentification (principe "pop before smtp") via le serveur <strong>mail.kelio.fr</strong>.<br />
|
|
Notez que notre système de messagerie est équipé d'un système anti-spam (technologie : greylisting), de ce fait, la réception des emails peut accuser d'un retard d'environ une heure.</p>
|
|
<p>
|
|
Les comptes emails sont compatible uniquement avec les domaines externes.<br />
|
|
Avant d'ajouter un compte, veuillez au préalable lui définir une redirection de <strong>type MX</strong> pointant vers <strong>mail.kelio.org</strong>. Dans le cas contraire, il vous sera impossible d'ajouter de compte.<br />
|
|
N'hésitez pas à consulter notre forum pour trouver de l'aide.
|
|
</p>
|
|
<p>
|
|
Le compte sera créé dans l'heure qui suit.
|
|
</p>
|
|
|
|
<?php if ( ($CountMailbox < $_SESSION['Offre']['CompteEmail']) or ($_SESSION['Offre']['CompteEmail'] == '-1')): ?>
|
|
<div>
|
|
<form action="execution-8.html" method="post">
|
|
<table cellpadding="5">
|
|
<tr>
|
|
<th>Courriel</th>
|
|
<td style="width:400px"><input type="text" name="Nom" maxlength="60"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Mot de passe</th>
|
|
<td><input type="text" name="MotDePasse" maxlength="9"></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Commentaire</th>
|
|
<td><input type="text" name="Commentaire" maxlength="50"></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<input type="submit" name="Submit" value="Créer le compte email" />
|
|
|
|
</form>
|
|
</div>
|
|
<?php else: ?>
|
|
<p>Désolé, vous ne pouvez plus ajouter de compte. Votre offre ne vous le permet pas.</p>
|
|
<?php endif;?>
|