Also uses int in database to represent user ids (Cf. #844 and 7fe2cd86).
[platal.git] / modules / email.php
CommitLineData
81b5b746 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 Polytechnique.org *
81b5b746 4 * http://opensource.polytechnique.org/ *
5 * *
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. *
10 * *
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. *
15 * *
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 *
20 ***************************************************************************/
21
22class EmailModule extends PLModule
23{
81b5b746 24 function handlers()
25 {
26 return array(
27 'emails' => $this->make_hook('emails', AUTH_COOKIE),
28 'emails/alias' => $this->make_hook('alias', AUTH_MDP),
29 'emails/antispam' => $this->make_hook('antispam', AUTH_MDP),
30 'emails/broken' => $this->make_hook('broken', AUTH_COOKIE),
31 'emails/redirect' => $this->make_hook('redirect', AUTH_MDP),
32 'emails/send' => $this->make_hook('send', AUTH_MDP),
62ce6356 33 'emails/antispam/submit' => $this->make_hook('submit', AUTH_COOKIE),
9c0a8f8c 34 'emails/test' => $this->make_hook('test', AUTH_COOKIE, 'user', NO_AUTH),
9e570fe0 35
2ee43273
FB
36 'emails/imap/in' => $this->make_hook('imap_in', AUTH_PUBLIC),
37
7727ffc7 38 'admin/emails/duplicated' => $this->make_hook('duplicated', AUTH_MDP, 'admin'),
f141945d 39 'admin/emails/watch' => $this->make_hook('duplicated', AUTH_MDP, 'admin'),
5ff3f06b 40 'admin/emails/lost' => $this->make_hook('lost', AUTH_MDP, 'admin'),
81b5b746 41 );
42 }
43
b7582015 44 function handler_emails(&$page, $action = null, $email = null)
81b5b746 45 {
46 global $globals;
e97e9b8f 47 require_once 'emails.inc.php';
81b5b746 48
49 $page->changeTpl('emails/index.tpl');
50 $page->assign('xorg_title','Polytechnique.org - Mes emails');
51
cab08090 52 $uid = S::v('uid');
81b5b746 53
b7582015 54 if ($action == 'best' && $email) {
46504fb3
VZ
55 if (!S::has_xsrf_token()) {
56 return PL_FORBIDDEN;
57 }
58
81b5b746 59 // bestalias is the first bit : 1
60 // there will be maximum 8 bits in flags : 255
08cce2ff 61 XDB::execute("UPDATE aliases SET flags=flags & (255 - 1) WHERE id={?}", $uid);
62 XDB::execute("UPDATE aliases SET flags=flags | 1 WHERE id={?} AND alias={?}",
b7582015 63 $uid, $email);
81b5b746 64 }
65
a7de4ef7 66 // on regarde si on a affaire à un homonyme
81b5b746 67 $sql = "SELECT alias, (type='a_vie') AS a_vie,
68 (alias REGEXP '\\\\.[0-9]{2}$') AS cent_ans,
69 FIND_IN_SET('bestalias',flags) AS best, expire
70 FROM aliases
71 WHERE id = {?} AND type!='homonyme'
72 ORDER BY LENGTH(alias)";
08cce2ff 73 $page->assign('aliases', XDB::iterator($sql, $uid));
81b5b746 74
e97e9b8f
VZ
75 $homonyme = XDB::query("SELECT alias FROM aliases INNER JOIN homonymes ON (id = homonyme_id) WHERE user_id = {?} AND type = 'homonyme'", $uid);
76 $page->assign('homonyme', $homonyme->fetchOneCell());
e1547442 77
aab4661d 78 // Affichage des redirections de l'utilisateur.
e97e9b8f
VZ
79 $redirect = new Redirect($uid);
80 $page->assign('mails', $redirect->active_emails());
81b5b746 81
82 // on regarde si l'utilisateur a un alias et si oui on l'affiche !
cab08090 83 $forlife = S::v('forlife');
08cce2ff 84 $res = XDB::query(
81b5b746 85 "SELECT alias
86 FROM virtual AS v
87 INNER JOIN virtual_redirect AS vr USING(vid)
eaf30d86 88 WHERE (redirect={?} OR redirect={?})
81b5b746 89 AND alias LIKE '%@{$globals->mail->alias_dom}'",
90 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
91 $page->assign('melix', $res->fetchOneCell());
81b5b746 92 }
93
94 function handler_alias(&$page, $action = null, $value = null)
95 {
96 require_once 'validations.inc.php';
97
98 global $globals;
99
100 $page->changeTpl('emails/alias.tpl');
101 $page->assign('xorg_title','Polytechnique.org - Alias melix.net');
102
cab08090 103 $uid = S::v('uid');
104 $forlife = S::v('forlife');
81b5b746 105
106 $page->assign('demande', AliasReq::get_request($uid));
107
40d428d8
VZ
108 if ($action == 'delete' && $value) {
109 S::assert_xsrf_token();
110
81b5b746 111 //Suppression d'un alias
08cce2ff 112 XDB::execute(
81b5b746 113 'DELETE virtual, virtual_redirect
114 FROM virtual
115 INNER JOIN virtual_redirect USING (vid)
116 WHERE alias = {?} AND (redirect = {?} OR redirect = {?})', $value,
117 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
118 }
119
a7de4ef7 120 //Récupération des alias éventuellement existants
08cce2ff 121 $res = XDB::query(
81b5b746 122 "SELECT alias, emails_alias_pub
123 FROM auth_user_quick, virtual
124 INNER JOIN virtual_redirect USING(vid)
125 WHERE ( redirect={?} OR redirect= {?} )
eaf30d86 126 AND alias LIKE '%@{$globals->mail->alias_dom}' AND user_id = {?}",
81b5b746 127 $forlife.'@'.$globals->mail->domain,
cab08090 128 $forlife.'@'.$globals->mail->domain2, S::v('uid'));
81b5b746 129 list($alias, $visibility) = $res->fetchOneRow();
130 $page->assign('actuel', $alias);
131
40d428d8
VZ
132 if ($action == 'ask' && Env::has('alias') && Env::has('raison')) {
133 S::assert_xsrf_token();
81b5b746 134
40d428d8 135 //Si l'utilisateur vient de faire une damande
5e2307dc 136 $alias = Env::v('alias');
137 $raison = Env::v('raison');
138 $public = (Env::v('public', 'off') == 'on')?"public":"private";
81b5b746 139
140 $page->assign('r_alias', $alias);
141 $page->assign('r_raison', $raison);
142 if ($public == 'public') {
143 $page->assign('r_public', true);
144 }
145
a7de4ef7 146 //Quelques vérifications sur l'alias (caractères spéciaux)
81b5b746 147 if (!preg_match( "/^[a-zA-Z0-9\-.]{3,20}$/", $alias)) {
a7d35093
FB
148 $page->trigError("L'adresse demandée n'est pas valide."
149 . " Vérifie qu'elle comporte entre 3 et 20 caractères"
150 . " et qu'elle ne contient que des lettres non accentuées,"
151 . " des chiffres ou les caractères - et .");
fd8f77de 152 return;
81b5b746 153 } else {
a7de4ef7 154 //vérifier que l'alias n'est pas déja pris
08cce2ff 155 $res = XDB::query('SELECT COUNT(*) FROM virtual WHERE alias={?}',
81b5b746 156 $alias.'@'.$globals->mail->alias_dom);
157 if ($res->fetchOneCell() > 0) {
a7d35093 158 $page->trigError("L'alias $alias@{$globals->mail->alias_dom} a déja été attribué.
81b5b746 159 Tu ne peux donc pas l'obtenir.");
fd8f77de 160 return;
81b5b746 161 }
162
a7de4ef7 163 //vérifier que l'alias n'est pas déja en demande
81b5b746 164 $it = new ValidateIterator ();
165 while($req = $it->next()) {
1f07f6c2 166 if ($req->type == "alias" and $req->alias == $alias . '@' . $globals->mail->alias_dom) {
a7d35093 167 $page->trigError("L'alias $alias@{$globals->mail->alias_dom} a déja été demandé.
81b5b746 168 Tu ne peux donc pas l'obtenir pour l'instant.");
fd8f77de 169 return ;
81b5b746 170 }
171 }
172
a7de4ef7 173 //Insertion de la demande dans la base, écrase les requêtes précédente
81b5b746 174 $myalias = new AliasReq($uid, $alias, $raison, $public);
175 $myalias->submit();
176 $page->assign('success',$alias);
fd8f77de 177 return;
81b5b746 178 }
46504fb3
VZ
179 } elseif ($action == 'set' && ($value == 'public' || $value == 'private')) {
180 if (!S::has_xsrf_token()) {
181 return PL_FORBIDDEN;
182 }
183
81b5b746 184 if ($value == 'public') {
08cce2ff 185 XDB::execute("UPDATE auth_user_quick SET emails_alias_pub = 'public'
cab08090 186 WHERE user_id = {?}", S::v('uid'));
81b5b746 187 } else {
08cce2ff 188 XDB::execute("UPDATE auth_user_quick SET emails_alias_pub = 'private'
cab08090 189 WHERE user_id = {?}", S::v('uid'));
81b5b746 190 }
191
192 $visibility = $value;
193 }
194
195 $page->assign('mail_public', ($visibility == 'public'));
81b5b746 196 }
197
198 function handler_redirect(&$page, $action = null, $email = null)
199 {
200 global $globals;
201
202 require_once 'emails.inc.php';
203
204 $page->changeTpl('emails/redirect.tpl');
205
cab08090 206 $uid = S::v('uid');
207 $forlife = S::v('forlife');
81b5b746 208
3b83212e 209 $page->assign('eleve', S::i('promo') >= date("Y") - 5);
210
cab08090 211 $redirect = new Redirect(S::v('uid'));
81b5b746 212
6d6b65bf 213 // FS#703 : $_GET is urldecoded twice, hence
214 // + (the data) => %2B (in the url) => + (first decoding) => ' ' (second decoding)
215 // Since there can be no spaces in emails, we can fix this with :
216 $email = str_replace(' ', '+', $email);
217
81b5b746 218 if ($action == 'remove' && $email) {
b7582015 219 $retour = $redirect->delete_email($email);
220 $page->assign('retour', $retour);
81b5b746 221 }
e1547442
FB
222
223 if ($action == 'active' && $email) {
224 $redirect->modify_one_email($email, true);
225 }
226
227 if ($action == 'inactive' && $email) {
228 $redirect->modify_one_email($email, false);
229 }
230
231 if ($action == 'rewrite' && $email) {
232 $rewrite = @func_get_arg(3);
233 $redirect->modify_one_email_redirect($email, $rewrite);
234 }
235
40d428d8
VZ
236 if (Env::has('emailop')) {
237 S::assert_xsrf_token();
238
5e2307dc 239 $actifs = Env::v('emails_actifs', Array());
b7582015 240 print_r(Env::v('emails_rewrite'));
5e2307dc 241 if (Env::v('emailop') == "ajouter" && Env::has('email')) {
242 $page->assign('retour', $redirect->add_email(Env::v('email')));
81b5b746 243 } elseif (empty($actifs)) {
244 $page->assign('retour', ERROR_INACTIVE_REDIRECTION);
245 } elseif (is_array($actifs)) {
246 $page->assign('retour', $redirect->modify_email($actifs,
5e2307dc 247 Env::v('emails_rewrite',Array())));
81b5b746 248 }
249 }
250
08cce2ff 251 $res = XDB::query(
81b5b746 252 "SELECT alias
253 FROM virtual
254 INNER JOIN virtual_redirect USING(vid)
255 WHERE (redirect={?} OR redirect={?})
eaf30d86 256 AND alias LIKE '%@{$globals->mail->alias_dom}'",
81b5b746 257 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
258 $melix = $res->fetchOneCell();
259 if ($melix) {
260 list($melix) = explode('@', $melix);
261 $page->assign('melix',$melix);
262 }
263
08cce2ff 264 $res = XDB::query(
81b5b746 265 "SELECT alias,expire
266 FROM aliases
267 WHERE id={?} AND (type='a_vie' OR type='alias')
268 ORDER BY !FIND_IN_SET('usage',flags), LENGTH(alias)", $uid);
bb0727ea 269
81b5b746 270 $page->assign('alias', $res->fetchAllAssoc());
271 $page->assign('emails',$redirect->emails);
aab4661d 272
f5c4bf30
VZ
273 require_once 'googleapps.inc.php';
274 $page->assign('googleapps', GoogleAppsAccount::account_status($uid));
81b5b746 275 }
276
b7582015 277 function handler_antispam(&$page, $statut_filtre = null)
81b5b746 278 {
279 require_once 'emails.inc.php';
841cfb97 280 require_once('wiki.inc.php');
281 wiki_require_page('Xorg.Antispam');
81b5b746 282
283 $page->changeTpl('emails/antispam.tpl');
284
cab08090 285 $bogo = new Bogo(S::v('uid'));
b7582015 286 if (isset($statut_filtre)) {
11ed26e5 287 $bogo->change($statut_filtre + 0);
81b5b746 288 }
289 $page->assign('filtre',$bogo->level());
81b5b746 290 }
291
62ce6356 292 function handler_submit(&$page)
293 {
4b9ba601 294 require_once('wiki.inc.php');
295 wiki_require_page('Xorg.Mails');
62ce6356 296 $page->changeTpl('emails/submit_spam.tpl');
297
40d428d8
VZ
298 if (Post::has('send_email')) {
299 S::assert_xsrf_token();
300
15603084 301 $upload = PlUpload::get($_FILES['mail'], S::v('forlife'), 'spam.submit', true);
302 if (!$upload) {
a7d35093 303 $page->trigError('Une erreur a été rencontrée lors du transfert du fichier');
62ce6356 304 return;
305 }
15603084 306 $mime = $upload->contentType();
62ce6356 307 if ($mime != 'text/x-mail' && $mime != 'message/rfc822') {
15603084 308 $upload->clear();
a7d35093 309 $page->trigError('Le fichier ne contient pas un mail complet');
62ce6356 310 return;
311 }
312 global $globals;
313 $box = Post::v('type') . '@' . $globals->mail->domain;
314 $mailer = new PlMailer();
315 $mailer->addTo($box);
316 $mailer->setFrom('"' . S::v('prenom') . ' ' . S::v('nom') . '" <web@' . $globals->mail->domain . '>');
317 $mailer->setTxtBody(Post::v('type') . ' soumis par ' . S::v('forlife') . ' via le web');
15603084 318 $mailer->addUploadAttachment($upload, Post::v('type') . '.mail');
62ce6356 319 $mailer->send();
a7d35093 320 $page->trigSuccess('Le message a été transmis à ' . $box);
15603084 321 $upload->clear();
62ce6356 322 }
323 }
324
81b5b746 325 function handler_send(&$page)
326 {
327 global $globals;
81b5b746 328 $page->changeTpl('emails/send.tpl');
da419622 329 $page->addJsLink('ajax.js');
81b5b746 330
331 $page->assign('xorg_title','Polytechnique.org - Envoyer un email');
332
333 // action si on recoit un formulaire
3360c04f 334 if (Post::has('save')) {
46504fb3
VZ
335 if (!S::has_xsrf_token()) {
336 return PL_FORBIDDEN;
337 }
338
3360c04f
FB
339 unset($_POST['save']);
340 if (trim(preg_replace('/-- .*/', '', Post::v('contenu'))) != "") {
341 $_POST['to_contacts'] = explode(';', @$_POST['to_contacts']);
342 $_POST['cc_contacts'] = explode(';', @$_POST['cc_contacts']);
343 $data = serialize($_POST);
344 XDB::execute("REPLACE INTO email_send_save
345 VALUES ({?}, {?})", S::i('uid'), $data);
346 }
347 exit;
40d428d8
VZ
348 } else if (Env::v('submit') == 'Envoyer') {
349 S::assert_xsrf_token();
350
91a14f73 351 function getEmails($aliases)
352 {
353 if (!is_array($aliases)) {
354 return null;
355 }
356 $rel = Env::v('contacts');
357 $ret = array();
358 foreach ($aliases as $alias) {
359 $ret[$alias] = $rel[$alias];
360 }
361 return join(', ', $ret);
362 }
363
5e68682e 364 $error = false;
da419622 365 foreach ($_FILES as &$file) {
f3fb8eda 366 if ($file['name'] && !PlUpload::get($file, S::v('forlife'), 'emails.send', false)) {
a7d35093 367 $page->trigError(PlUpload::$lastError);
5e68682e
FB
368 $error = true;
369 break;
da419622 370 }
371 }
372
5e68682e
FB
373 if (!$error) {
374 XDB::execute("DELETE FROM email_send_save
375 WHERE uid = {?}", S::i('uid'));
376
377 $to2 = getEmails(Env::v('to_contacts'));
378 $cc2 = getEmails(Env::v('cc_contacts'));
379 $txt = str_replace('^M', '', Env::v('contenu'));
380 $to = Env::v('to');
381 $subj = Env::v('sujet');
382 $from = Env::v('from');
383 $cc = trim(Env::v('cc'));
384 $bcc = trim(Env::v('bcc'));
385
386 if (empty($to) && empty($cc) && empty($to2) && empty($bcc) && empty($cc2)) {
a7d35093 387 $page->trigError("Indique au moins un destinataire.");
da419622 388 $page->assign('uploaded_f', PlUpload::listFilenames(S::v('forlife'), 'emails.send'));
5e68682e
FB
389 } else {
390 $mymail = new PlMailer();
391 $mymail->setFrom($from);
392 $mymail->setSubject($subj);
393 if (!empty($to)) { $mymail->addTo($to); }
394 if (!empty($cc)) { $mymail->addCc($cc); }
395 if (!empty($bcc)) { $mymail->addBcc($bcc); }
396 if (!empty($to2)) { $mymail->addTo($to2); }
397 if (!empty($cc2)) { $mymail->addCc($cc2); }
398 $files =& PlUpload::listFiles(S::v('forlife'), 'emails.send');
399 foreach ($files as $name=>&$upload) {
400 $mymail->addUploadAttachment($upload, $name);
401 }
402 if (Env::v('nowiki')) {
403 $mymail->setTxtBody(wordwrap($txt, 78, "\n"));
404 } else {
405 $mymail->setWikiBody($txt);
406 }
407 if ($mymail->send()) {
a7d35093 408 $page->trigSuccess("Ton mail a bien été envoyé.");
5e68682e
FB
409 $_REQUEST = array('bcc' => S::v('bestalias').'@'.$globals->mail->domain);
410 PlUpload::clear(S::v('forlife'), 'emails.send');
411 } else {
a7d35093 412 $page->trigError("Erreur lors de l'envoi du courriel, réessaye.");
5e68682e
FB
413 $page->assign('uploaded_f', PlUpload::listFilenames(S::v('forlife'), 'emails.send'));
414 }
81b5b746 415 }
416 }
417 } else {
3360c04f
FB
418 $res = XDB::query("SELECT data
419 FROM email_send_save
420 WHERE uid = {?}", S::i('uid'));
421 if ($res->numRows() == 0) {
422 PlUpload::clear(S::v('forlife'), 'emails.send');
423 $_REQUEST['bcc'] = S::v('bestalias').'@'.$globals->mail->domain;
424 } else {
425 $data = unserialize($res->fetchOneCell());
426 $_REQUEST = array_merge($_REQUEST, $data);
427 }
81b5b746 428 }
429
08cce2ff 430 $res = XDB::query(
81b5b746 431 "SELECT u.prenom, u.nom, u.promo, a.alias as forlife
432 FROM auth_user_md5 AS u
433 INNER JOIN contacts AS c ON (u.user_id = c.contact)
434 INNER JOIN aliases AS a ON (u.user_id=a.id AND FIND_IN_SET('bestalias',a.flags))
435 WHERE c.uid = {?}
cab08090 436 ORDER BY u.nom, u.prenom", S::v('uid'));
81b5b746 437 $page->assign('contacts', $res->fetchAllAssoc());
5e68682e 438 $page->assign('maxsize', ini_get('upload_max_filesize') . 'o');
81b5b746 439 }
440
5ff3f06b
FB
441 function handler_test(&$page, $forlife = null)
442 {
443 global $globals;
e4ecada4
VZ
444 require_once 'emails.inc.php';
445
46504fb3
VZ
446 if (!S::has_xsrf_token()) {
447 return PL_FORBIDDEN;
448 }
5ff3f06b
FB
449 if (!S::has_perms() || !$forlife) {
450 $forlife = S::v('bestalias');
451 }
e4ecada4
VZ
452
453 $res = XDB::query("SELECT FIND_IN_SET('femme', u.flags), prenom, user_id
5ff3f06b
FB
454 FROM auth_user_md5 AS u
455 INNER JOIN aliases AS a ON (a.id = u.user_id)
456 WHERE a.alias = {?}", $forlife);
e4ecada4
VZ
457 list($sexe, $prenom, $uid) = $res->fetchOneRow();
458 $redirect = new Redirect($uid);
459
460 $mailer = new PlMailer('emails/test.mail.tpl');
461 $mailer->assign('email', $forlife . '@' . $globals->mail->domain);
462 $mailer->assign('redirects', $redirect->active_emails());
5ff3f06b
FB
463 $mailer->assign('sexe', $sexe);
464 $mailer->assign('prenom', $prenom);
465 $mailer->send();
466 exit;
467 }
468
2ee43273
FB
469 function handler_imap_in(&$page, $hash = null, $login = null)
470 {
471 $page->changeTpl('emails/imap_register.tpl');
472 $id = null;
473 if (!empty($hash) || !empty($login)) {
e2cea47d 474 $req = XDB::query("SELECT u.prenom, FIND_IN_SET('femme', u.flags) AS sexe, a.id
2ee43273
FB
475 FROM aliases AS a
476 INNER JOIN newsletter_ins AS ni ON (a.id = ni.user_id)
477 INNER JOIN auth_user_md5 AS u ON (u.user_id = a.id)
478 WHERE a.alias = {?} AND ni.hash = {?}", $login, $hash);
e2cea47d 479 list($prenom, $sexe, $id) = $req->fetchOneRow();
2ee43273
FB
480 }
481
482 require_once('emails.inc.php');
483 $page->assign('ok', false);
484 if (S::logged() && (is_null($id) || $id == S::i('uid'))) {
485 $storage = new EmailStorage(S::i('uid'), 'imap');
486 $storage->activate();
487 $page->assign('ok', true);
488 $page->assign('prenom', S::v('prenom'));
e2cea47d 489 $page->assign('sexe', S::v('femme'));
2ee43273
FB
490 } else if (!S::logged() && $id) {
491 $storage = new EmailStorage($id, 'imap');
492 $storage->activate();
493 $page->assign('ok', true);
494 $page->assign('prenom', $prenom);
e2cea47d 495 $page->assign('sexe', $sexe);
2ee43273
FB
496 }
497 }
498
81b5b746 499 function handler_broken(&$page, $warn = null, $email = null)
500 {
501 require_once 'emails.inc.php';
4b9ba601 502 require_once('wiki.inc.php');
a7de4ef7 503 wiki_require_page('Xorg.PatteCassée');
81b5b746 504
505 global $globals;
506
507 $page->changeTpl('emails/broken.tpl');
508
40d428d8
VZ
509 if ($warn == 'warn' && $email) {
510 S::assert_xsrf_token();
511
81b5b746 512 $email = valide_email($email);
a7de4ef7 513 // vérifications d'usage
08cce2ff 514 $sel = XDB::query(
81b5b746 515 "SELECT e.uid, a.alias
516 FROM emails AS e
81b5b746 517 INNER JOIN aliases AS a ON (e.uid = a.id AND type!='homonyme'
518 AND FIND_IN_SET('bestalias',a.flags))
519 WHERE e.email={?}", $email);
520
521 if (list($uid, $dest) = $sel->fetchOneRow()) {
522 // envoi du mail
523 $message = "Bonjour !
524
a7de4ef7 525Ce mail a été généré automatiquement par le service de patte cassée de
cab08090 526Polytechnique.org car un autre utilisateur, ".S::v('prenom').' '.S::v('nom').",
a7de4ef7 527nous a signalé qu'en t'envoyant un mail, il avait reçu un message d'erreur
81b5b746 528indiquant que ton adresse de redirection $email
529ne fonctionnait plus !
530
a7de4ef7 531Nous te suggérons de vérifier cette adresse, et le cas échéant de mettre
532à jour sur le site <{$globals->baseurl}/emails> tes adresses
81b5b746 533de redirection...
534
661e78f7 535Pour plus de renseignements sur le service de patte cassée, n'hésite pas à
2c388954 536consulter la page <{$globals->baseurl}/emails/broken>.
81b5b746 537
538
661e78f7 539À bientôt sur Polytechnique.org !
1d55fe45 540L'équipe d'administration <support@" . $globals->mail->domain . '>';
81b5b746 541
1e33266a 542 $mail = new PlMailer();
1d55fe45 543 $mail->setFrom('"Polytechnique.org" <support@' . $globals->mail->domain . '>');
544 $mail->addTo("$dest@" . $globals->mail->domain);
81b5b746 545 $mail->setSubject("Une de tes adresse de redirection Polytechnique.org ne marche plus !!");
546 $mail->setTxtBody($message);
547 $mail->send();
a7d35093 548 $page->trigSuccess("Mail envoyé !");
81b5b746 549 }
40d428d8
VZ
550 } elseif (Post::has('email')) {
551 S::assert_xsrf_token();
552
5e2307dc 553 $email = valide_email(Post::v('email'));
81b5b746 554
555 list(,$fqdn) = explode('@', $email);
556 $fqdn = strtolower($fqdn);
40d428d8 557 if ($fqdn == 'polytechnique.org' || $fqdn == 'melix.org' || $fqdn == 'm4x.org' || $fqdn == 'melix.net') {
81b5b746 558 $page->assign('neuneu', true);
559 } else {
560 $page->assign('email',$email);
08cce2ff 561 $sel = XDB::query(
b1797f70
VZ
562 "SELECT e1.uid, e1.panne != 0 AS panne,
563 (count(e2.uid) + IF(FIND_IN_SET('googleapps', u.mail_storage), 1, 0)) AS nb_mails,
4b9ba601 564 u.nom, u.prenom, u.promo, a.alias AS forlife
81b5b746 565 FROM emails as e1
eaf30d86 566 LEFT JOIN emails as e2 ON(e1.uid = e2.uid
81b5b746 567 AND FIND_IN_SET('active', e2.flags)
568 AND e1.email != e2.email)
569 INNER JOIN auth_user_md5 as u ON(e1.uid = u.user_id)
4b9ba601 570 INNER JOIN aliases AS a ON (a.id = e1.uid AND a.type = 'a_vie')
81b5b746 571 WHERE e1.email = {?}
572 GROUP BY e1.uid", $email);
573 if ($x = $sel->fetchOneAssoc()) {
a7de4ef7 574 // on écrit dans la base que l'adresse est cassée
81b5b746 575 if (!$x['panne']) {
74938c82 576 XDB::execute("UPDATE emails
577 SET panne=NOW(),
578 last=NOW(),
579 panne_level = 1
580 WHERE email = {?}", $email);
581 } else {
582 XDB::execute("UPDATE emails
583 SET panne_level = 1
4b9ba601 584 WHERE email = {?} AND panne_level = 0", $email);
81b5b746 585 }
586 $page->assign_by_ref('x', $x);
587 }
588 }
589 }
590 }
9e570fe0 591
592 function handler_duplicated(&$page, $action = 'list', $email = null)
593 {
594 $page->changeTpl('emails/duplicated.tpl');
595
596 $states = array('pending' => 'En attente...',
a7de4ef7 597 'safe' => 'Pas d\'inquiétude',
9e570fe0 598 'unsafe' => 'Recherches en cours',
599 'dangerous' => 'Usurpations par cette adresse');
600 $page->assign('states', $states);
601
40d428d8
VZ
602 if (Post::has('action')) {
603 S::assert_xsrf_token();
46504fb3 604 }
9e570fe0 605 switch (Post::v('action')) {
46504fb3 606 case 'create':
9e570fe0 607 if (trim(Post::v('emailN')) != '') {
608 Xdb::execute('INSERT IGNORE INTO emails_watch (email, state, detection, last, uid, description)
609 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
610 trim(Post::v('emailN')), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
611 };
612 break;
613
46504fb3 614 case 'edit':
9e570fe0 615 Xdb::execute('UPDATE emails_watch
616 SET state = {?}, last = NOW(), uid = {?}, description = {?}
617 WHERE email = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'), Post::v('emailN'));
618 break;
619
46504fb3 620 default:
9e570fe0 621 if ($action == 'delete' && !is_null($email)) {
622 Xdb::execute('DELETE FROM emails_watch WHERE email = {?}', $email);
623 }
624 }
625 if ($action != 'create' && $action != 'edit') {
626 $action = 'list';
627 }
628 $page->assign('action', $action);
629
630 if ($action == 'list') {
631 $sql = "SELECT w.email, w.detection, w.state, a.alias AS forlife
632 FROM emails_watch AS w
ca6d07f4 633 LEFT JOIN emails AS e USING(email)
634 LEFT JOIN aliases AS a ON (a.id = e.uid AND a.type = 'a_vie')
9e570fe0 635 ORDER BY w.state, w.email, a.alias";
636 $it = Xdb::iterRow($sql);
637
638 $table = array();
639 $props = array();
640 while (list($email, $date, $state, $forlife) = $it->next()) {
641 if (count($props) == 0 || $props['mail'] != $email) {
642 if (count($props) > 0) {
643 $table[] = $props;
644 }
645 $props = array('mail' => $email,
646 'detection' => $date,
647 'state' => $state,
648 'users' => array($forlife));
649 } else {
650 $props['users'][] = $forlife;
651 }
652 }
653 if (count($props) > 0) {
654 $table[] = $props;
655 }
656 $page->assign('table', $table);
657 } elseif ($action == 'edit') {
658 $sql = "SELECT w.detection, w.state, w.last, w.description,
659 a1.alias AS edit, a2.alias AS forlife
660 FROM emails_watch AS w
eaf30d86 661 LEFT JOIN aliases AS a1 ON (a1.id = w.uid AND a1.type = 'a_vie')
9615c895 662 LEFT JOIN emails AS e ON (w.email = e.email)
ca6d07f4 663 LEFT JOIN aliases AS a2 ON (a2.id = e.uid AND a2.type = 'a_vie')
9e570fe0 664 WHERE w.email = {?}
665 ORDER BY a2.alias";
666 $it = Xdb::iterRow($sql, $email);
667
668 $props = array();
669 while (list($detection, $state, $last, $description, $edit, $forlife) = $it->next()) {
670 if (count($props) == 0) {
671 $props = array('mail' => $email,
672 'detection' => $detection,
673 'state' => $state,
674 'last' => $last,
675 'description' => $description,
676 'edit' => $edit,
677 'users' => array($forlife));
678 } else {
679 $props['users'][] = $forlife;
680 }
681 }
682 $page->assign('doublon', $props);
683 }
684 }
7727ffc7 685 function handler_lost(&$page, $action = 'list', $email = null)
686 {
687 $page->changeTpl('emails/lost.tpl');
eaf30d86 688
7727ffc7 689 $page->assign('lost_emails', XDB::iterator('
0e5ec860
VZ
690 SELECT u.user_id, a.alias
691 FROM auth_user_md5 AS u
692 INNER JOIN aliases AS a ON (a.id = u.user_id AND a.type = "a_vie")
693 LEFT JOIN emails AS e ON (u.user_id=e.uid AND FIND_IN_SET("active",e.flags))
694 WHERE e.uid IS NULL AND
695 FIND_IN_SET("googleapps", u.mail_storage) = 0 AND
696 u.deces = 0
697 ORDER BY u.promo DESC, u.nom, u.prenom'));
7727ffc7 698 }
81b5b746 699}
700
a7de4ef7 701// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
81b5b746 702?>