1 {**************************************************************************}
3 {* Copyright (C) 2003-2006 Polytechnique.org *}
4 {* http://opensource.polytechnique.org/ *}
6 {* This program is free software; you can redistribute it and/or modify *}
7 {* it under the terms of the GNU General Public License as published by *}
8 {* the Free Software Foundation; either version 2 of the License, or *}
9 {* (at your option) any later version. *}
11 {* This program is distributed in the hope that it will be useful, *}
12 {* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13 {* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14 {* GNU General Public License for more details. *}
16 {* You should have received a copy of the GNU General Public License *}
17 {* along with this program; if not, write to the Free Software *}
18 {* Foundation, Inc., *}
19 {* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
21 {**************************************************************************}
30 <p class="erreur">mail envoyé à {$forlife}</p>
31 {elseif $op eq 'correct'}
32 <p class="erreur">mail envoyé à {$forlife}, alias supprimé</p>
35 {if $op eq 'list' || $op eq 'mail' || $op eq 'correct'}
38 Les utilisateurs signalés en rouge sont ceux qui conservent actuellement
39 l'alias prenom.nom et empêchent donc la mise en place du robot détrompeur.
44 <th>alias concerné</th>
45 <th>date de péremption de l'alias</th>
48 {foreach from=$hnymes key=login item=row}
51 <strong>{$login}</strong>
54 {foreach from=$row item=user}
57 {if $user.type eq 'alias'}
58 <span class="erreur"><strong>{$user.forlife}</strong></span>
63 <td>{$user.expire|date_format}</td>
65 <a href="{"fiche.php"|url}?user={$user.forlife}" class='popup2'>fiche</a>
66 <a href="utilisateurs.php?login={$user.forlife}">edit</a>
67 {if $user.type eq 'alias'}
68 <a href="?op=mail-conf&target={$user.user_id}">mailer</a>
69 <a href="?op=correct-conf&target={$user.user_id}">corriger</a>
77 {elseif $op eq 'mail-conf'}
79 <form method="post" action="{$smarty.server.PHP_SELF}">
82 <th>Envoyer un mail pour prévenir l'utilisateur</th>
86 <textarea cols="80" rows="20" name="mailbody">
90 Comme nous t'en avons informé par mail il y a quelques temps,
91 pour respecter nos engagements en terme d'adresses e-mail devinables,
92 tu te verras bientôt retirer l'alias {$loginbis}@polytechnique.org pour
93 ne garder que {$forlife}@polytechnique.org.
95 Toute personne qui écrira à {$loginbis}@polytechnique.org recevra la
96 réponse d'un robot qui l'informera que {$loginbis}@polytechnique.org
97 est ambigu pour des raisons d'homonymie et signalera ton email exact.
99 L'équipe Polytechnique.org
106 <input type="hidden" name="target" value="{$target}" />
107 <input type="hidden" name="op" value="mail" />
108 <input type="submit" value="Envoyer" />
114 {elseif $op eq 'correct-conf'}
116 <form method="post" action="{$smarty.server.PHP_SELF}">
117 <table class="bicol">
119 <th>Mettre en place le robot {$loginbis}@polytechnique.org</th>
123 <textarea cols="80" rows="20" name="mailbody">
126 Comme nous t'en avons informé par mail il y a quelques temps,
127 nous t'avons retiré de façon définitive l'adresse
128 {$loginbis}@polytechnique.org.
130 Toute personne qui écrit à {$loginbis}@polytechnique.org reçoit la
131 réponse d'un robot qui l'informe que {$loginbis}@polytechnique.org
132 est ambigu pour des raisons d'homonymie et signale ton email exact
134 Tu peux faire l'essai toi-même en écrivant à {$loginbis}@polytechnique.org.
136 L'équipe Polytechnique.org
143 <input type="hidden" name="target" value="{$target}" />
144 <input type="hidden" name="op" value="correct" />
145 <input type="submit" value="Envoyer et corriger" />
154 {* vim:set et sw=2 sts=2 sws=2: *}