Opt-in for email rewriting.
[platal.git] / include / emails.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 Polytechnique.org *
0337d704 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
0337d704 22define("SUCCESS", 1);
23define("ERROR_INACTIVE_REDIRECTION", 2);
24define("ERROR_INVALID_EMAIL", 3);
25define("ERROR_LOOP_EMAIL", 4);
26
441c2451 27// function fix_bestalias() {{{1
11ed26e5
VZ
28// Checks for an existing 'bestalias' among the the current user's aliases, and
29// eventually selects a new bestalias when required.
0337d704 30function fix_bestalias($uid)
31{
11ed26e5
VZ
32 $res = XDB::query("SELECT COUNT(*)
33 FROM aliases
34 WHERE id = {?} AND FIND_IN_SET('bestalias', flags) AND type != 'homonyme'",
35 $uid);
36 if ($res->fetchOneCell()) {
0337d704 37 return;
38 }
11ed26e5 39
08cce2ff 40 XDB::execute("UPDATE aliases
612a2d8a 41 SET flags=CONCAT(flags,',','bestalias')
42 WHERE id={?} AND type!='homonyme'
43 ORDER BY !FIND_IN_SET('usage',flags),alias LIKE '%.%', LENGTH(alias)
44 LIMIT 1", $uid);
0337d704 45}
46
441c2451 47// function valide_email() {{{1
11ed26e5
VZ
48// Returns a cleaned-up version of the @p email string. It removes garbage
49// characters, and determines the canonical form (without _ and +) for
50// Polytechnique.org email addresses.
0337d704 51function valide_email($str)
52{
a3a049fc 53 global $globals;
54
55 $em = trim(rtrim($str));
56 $em = str_replace('<', '', $em);
57 $em = str_replace('>', '', $em);
58 list($ident, $dom) = explode('@', $em);
59 if ($dom == $globals->mail->domain or $dom == $globals->mail->domain2) {
60 list($ident1) = explode('_', $ident);
61 list($ident) = explode('+', $ident1);
62 }
63 return $ident . '@' . $dom;
0337d704 64}
65
c6310567
FB
66// function isvalid_email_redirection() {{{1
67/** vérifie si une adresse email convient comme adresse de redirection
68 * @param $email l'adresse email a verifier
69 * @return BOOL
70 */
71function isvalid_email_redirection($email)
72{
73 return isvalid_email($email) &&
74 !preg_match("/@(polytechnique\.(org|edu)|melix\.(org|net)|m4x\.org)$/", $email);
75}
76
441c2451 77// class Bogo {{{1
11ed26e5 78// The Bogo class represents a spam filtering level in plat/al architecture.
0337d704 79class Bogo
80{
441c2451 81 // properties {{{2
a3a049fc 82
11ed26e5 83 private $uid;
612a2d8a 84 private $state;
85 private $_states = Array('let_spams', 'tag_spams', 'tag_and_drop_spams', 'drop_spams');
0337d704 86
441c2451 87 // constructor {{{2
a3a049fc 88
612a2d8a 89 public function __construct($uid)
0337d704 90 {
3c1e6a1e 91 if (!$uid) {
92 return;
93 }
11ed26e5
VZ
94
95 $this->uid = $uid;
3c1e6a1e 96 $res = XDB::query('SELECT email FROM emails WHERE uid={?} AND flags="filter"', $uid);
97 if ($res->numRows()) {
612a2d8a 98 $this->state = $res->fetchOneCell();
3c1e6a1e 99 } else {
100 $this->state = 'tag_and_drop_spams';
101 $res = XDB::query("INSERT INTO emails (uid,email,rewrite,panne,flags)
102 VALUES ({?},'tag_and_drop_spams','','0000-00-00','filter')", $uid);
103 }
0337d704 104 }
105
441c2451 106 // public function change() {{{2
0337d704 107
11ed26e5 108 public function change($state)
0337d704 109 {
612a2d8a 110 $this->state = is_int($state) ? $this->_states[$state] : $state;
111 XDB::execute('UPDATE emails SET email={?} WHERE uid={?} AND flags = "filter"',
11ed26e5 112 $this->state, $this->uid);
0337d704 113 }
114
441c2451 115 // pubic function level() {{{2
0337d704 116
612a2d8a 117 public function level()
118 {
119 return array_search($this->state, $this->_states);
120 }
0337d704 121}
122
441c2451 123// class Email {{{1
11ed26e5
VZ
124// Represents an "email address" used as final recipient for plat/al-managed
125// addresses; it can be subclasses a Redirection emails (third-party) or as
126// Storage emails (Polytechnique.org).
127abstract class Email
0337d704 128{
11ed26e5 129 protected $uid;
612a2d8a 130
11ed26e5
VZ
131 // Basic email properties; $sufficient indicates if the email can be used as
132 // an unique redirection; $email contains the delivery email address.
133 public $type;
134 public $sufficient;
612a2d8a 135 public $email;
11ed26e5
VZ
136 public $display_email;
137
138 // Redirection status properties.
612a2d8a 139 public $active;
140 public $broken;
441c2451 141 public $disabled;
612a2d8a 142 public $rewrite;
3d17e48f
FB
143 public $allow_rewrite;
144 public $hash;
11ed26e5
VZ
145
146 // Redirection bounces stats.
612a2d8a 147 public $panne;
148 public $last;
149 public $panne_level;
0337d704 150
11ed26e5
VZ
151 // Activates the email address as a redirection.
152 public abstract function activate();
153
154 // Deactivates the email address as a redirection.
155 public abstract function deactivate();
156
157 // Sets the rewrite rule for the given address.
158 public abstract function set_rewrite($rewrite);
159
160 // Resets the error counts associated with the redirection.
161 public abstract function clean_errors();
162
163 // Email backend capabilities ('rewrite' refers to From: rewrite for mails
164 // forwarded by Polytechnique.org's MXs; 'removable' indicates if the email
165 // can be definitively removed; 'disable' indicates if the email has a third
166 // status 'disabled' in addition to 'active' and 'inactive').
167 public abstract function has_rewrite();
168 public abstract function is_removable();
169 public abstract function has_disable();
170}
171
172// class EmailRedirection {{{1
173// Implementation of Email for third-party redirection (redirection of emails to
174// external user-supplied addresses).
175class EmailRedirection extends Email
176{
441c2451 177 // constructor {{{2
0337d704 178
11ed26e5 179 public function __construct($uid, $row)
0337d704 180 {
11ed26e5
VZ
181 $this->uid = $uid;
182 $this->sufficient = true;
183
3d17e48f 184 list($this->email, $flags, $this->rewrite, $this->allow_rewrite, $this->hash, $this->panne, $this->last, $this->panne_level) = $row;
11ed26e5 185 $this->display_email = $this->email;
441c2451 186 $this->active = ($flags == 'active');
187 $this->broken = ($flags == 'panne');
188 $this->disabled = ($flags == 'disable');
0337d704 189 }
190
441c2451 191 // public function activate() {{{2
0337d704 192
11ed26e5 193 public function activate()
0337d704 194 {
0337d704 195 if (!$this->active) {
dc557110 196 XDB::execute("UPDATE emails
197 SET panne_level = IF(flags = 'panne', panne_level - 1, panne_level),
198 flags = 'active'
11ed26e5 199 WHERE uid={?} AND email={?}", $this->uid, $this->email);
732e5855 200 S::logger()->log("email_on", $this->email.($this->uid!=S::v('uid') ? "(admin on {$this->uid})" : ""));
0337d704 201 $this->active = true;
dc557110 202 $this->broken = false;
0337d704 203 }
204 }
205
441c2451 206 // public function deactivate() {{{2
0337d704 207
11ed26e5 208 public function deactivate()
0337d704 209 {
0337d704 210 if ($this->active) {
08cce2ff 211 XDB::execute("UPDATE emails SET flags =''
11ed26e5 212 WHERE uid={?} AND email={?}", $this->uid, $this->email);
732e5855 213 S::logger()->log("email_off",$this->email.($this->uid != S::v('uid') ? "(admin on {$this->uid})" : "") );
0337d704 214 $this->active = false;
215 }
216 }
612a2d8a 217
11ed26e5 218 // public function set_rewrite() {{{2
0337d704 219
11ed26e5 220 public function set_rewrite($rewrite)
0337d704 221 {
11ed26e5 222 if ($this->rewrite == $rewrite) {
0337d704 223 return;
224 }
11ed26e5
VZ
225 if (!$rewrite || !isvalid_email($rewrite)) {
226 $rewrite = '';
12acff5d 227 }
11ed26e5
VZ
228 XDB::execute('UPDATE emails SET rewrite={?} WHERE uid={?} AND email={?}', $rewrite, $this->uid, $this->email);
229 $this->rewrite = $rewrite;
3d17e48f
FB
230 if (!$this->allow_rewrite) {
231 global $globals;
232 if (empty($this->hash)) {
233 $this->hash = rand_url_id();
234 XDB::execute("UPDATE emails
235 SET hash = {?}
236 WHERE uid = {?} AND email = {?}", $this->hash, $this->uid, $this->email);
237 }
238 $res = XDB::query("SELECT IF(u.nom_usage = '', u.nom, u.nom_usage) AS nom, u.prenom, FIND_IN_SET('femme', u.flags) AS sex,
239 q.core_mail_fmt, a.alias AS forlife, a2.alias AS bestalias
240 FROM auth_user_md5 AS u
241 INNER JOIN auth_user_quick AS q ON (u.user_id = q.user_id)
242 INNER JOIN aliases AS a ON (a.id = u.user_id AND a.type = 'a_vie')
243 INNER JOIN aliases AS a2 ON (a2.id = u.user_id AND FIND_IN_SET('bestalias', a2.flags))
244 WHERE u.user_id = {?}", $this->uid);
245 list($nom, $prenom, $sexe, $fmt, $forlife, $bestalias) = $res->fetchOneRow();
246 $mail = new PlMailer('emails/rewrite-in.mail.tpl');
247 $mail->assign('mail', $this);
248 $mail->assign('nom', $nom);
249 $mail->assign('prenom', $prenom);
250 $mail->assign('sexe', $sexe);
251 $mail->assign('forlife', $forlife);
252 $mail->assign('baseurl', $globals->baseurl);
253 $mail->assign('to', $bestalias . '@' . $globals->mail->domain);
254 $mail->send($fmt == 'html');
255 }
3c1e6a1e 256 return;
0337d704 257 }
258
11ed26e5 259 // public function clean_errors() {{{2
441c2451 260
11ed26e5 261 public function clean_errors()
441c2451 262 {
263 if (!S::has_perms()) {
264 return false;
265 }
266 $this->panne = 0;
267 $this->panne_level = 0;
268 $this->last = 0;
269 return XDB::execute("UPDATE emails
270 SET panne_level = 0, panne = 0, last = 0
271 WHERE uid = {?} AND email = {?}",
11ed26e5
VZ
272 $this->uid, $this->email);
273 }
274
275 // public function has_rewrite() {{{2
276
277 public function has_rewrite()
278 {
279 return true;
280 }
281
282 // public function is_removable() {{{2
283
284 public function is_removable()
285 {
286 return true;
287 }
288
289 // public function has_disable() {{{2
290
291 public function has_disable()
292 {
293 return true;
441c2451 294 }
0337d704 295}
296
afde0a3a
VZ
297// class EmailStorage {{{1
298// Implementation of Email for email storage backends from Polytechnique.org.
299class EmailStorage extends Email
300{
301 // Shortname to realname mapping for known mail storage backends.
302 private $display_names = array(
303 'imap' => 'Accès de secours aux emails (IMAP)',
690c8519 304 'googleapps' => 'Compte Google Apps',
afde0a3a
VZ
305 );
306
307 // Retrieves the current list of actives storages.
308 private function get_storages()
309 {
310 $res = XDB::query("SELECT mail_storage
311 FROM auth_user_md5
312 WHERE user_id = {?}", $this->uid);
113f6de8 313 return new PlFlagSet($res->fetchOneCell());
afde0a3a
VZ
314 }
315
316 // Updates the list of active storages.
317 private function set_storages($storages)
318 {
319 XDB::execute("UPDATE auth_user_md5
320 SET mail_storage = {?}
77e786e1 321 WHERE user_id = {?}", $storages, $this->uid);
afde0a3a
VZ
322 }
323
324 // Returns the list of allowed storages for the @p user.
325 static public function get_allowed_storages($uid)
326 {
327 global $globals;
328 $storages = array();
329
330 // Google Apps storage is available for users with valid Google Apps account.
331 require_once 'googleapps.inc.php';
332 if ($globals->mailstorage->googleapps_domain &&
333 GoogleAppsAccount::account_status($uid) == 'active') {
334 $storages[] = 'googleapps';
335 }
336
337 // IMAP storage is always visible to administrators, and is allowed for
338 // everyone when the service is marked as 'active'.
339 if ($globals->mailstorage->imap_active || S::has_perms()) {
340 $storages[] = 'imap';
341 }
342
343 return $storages;
344 }
345
346
347 public function __construct($uid, $name)
348 {
349 $this->uid = $uid;
350 $this->email = $name;
351 $this->display_email = (isset($this->display_names[$name]) ? $this->display_names[$name] : $name);
352
353 $storages = $this->get_storages();
354 $this->sufficient = ($name == 'googleapps');
355 $this->active = $storages->hasFlag($name);
356 $this->broken = false;
357 $this->disabled = false;
358 $this->rewrite = '';
359 $this->panne = $this->last = $this->panne_level = 0;
360 }
361
362 public function activate()
363 {
364 if (!$this->active) {
365 $storages = $this->get_storages();
366 $storages->addFlag($this->email);
367 $this->set_storages($storages);
368 $this->active = true;
369 }
370 }
371
372 public function deactivate()
373 {
374 if ($this->active) {
375 $storages = $this->get_storages();
376 $storages->rmFlag($this->email);
377 $this->set_storages($storages);
378 $this->active = false;
379 }
380
381 }
382
383 // Source rewrite can't be enabled for email storage addresses.
384 public function set_rewrite($rewrite) {}
385
386 // Email storage are not supposed to be broken, hence not supposed to be
387 // cleaned-up.
388 public function clean_errors() {}
389
390 // Capabilities.
391 public function has_rewrite() { return false; }
392 public function is_removable() { return false; }
393 public function has_disable() { return false; }
394}
395
441c2451 396// class Redirect {{{1
11ed26e5
VZ
397// Redirect is a placeholder class for an user's active redirections (third-party
398// redirection email, or Polytechnique.org mail storages).
0337d704 399class Redirect
400{
441c2451 401 // properties {{{2
612a2d8a 402
403 private $flag_active = 'active';
404 private $uid;
405
406 public $emails;
407 public $bogo;
0337d704 408
441c2451 409 // constructor {{{2
0337d704 410
612a2d8a 411 public function __construct($_uid)
0337d704 412 {
11ed26e5 413 $this->uid = $_uid;
afde0a3a 414 $this->bogo = new Bogo($_uid);
11ed26e5 415
afde0a3a 416 // Adds third-party email redirections.
3d17e48f 417 $res = XDB::iterRow("SELECT email, flags, rewrite, allow_rewrite, hash, panne, last, panne_level
612a2d8a 418 FROM emails
419 WHERE uid = {?} AND flags != 'filter'", $_uid);
11ed26e5 420 $this->emails = Array();
0337d704 421 while ($row = $res->next()) {
11ed26e5 422 $this->emails[] = new EmailRedirection($_uid, $row);
0337d704 423 }
afde0a3a
VZ
424
425 // Adds local email storage backends.
426 foreach (EmailStorage::get_allowed_storages($_uid) as $storage) {
427 $this->emails[] = new EmailStorage($_uid, $storage);
428 }
0337d704 429 }
430
441c2451 431 // public function other_active() {{{2
0337d704 432
612a2d8a 433 public function other_active($email)
0337d704 434 {
435 foreach ($this->emails as $mail) {
11ed26e5 436 if ($mail->email != $email && $mail->active && $mail->sufficient) {
0337d704 437 return true;
438 }
439 }
440 return false;
441 }
442
441c2451 443 // public function delete_email() {{{2
0337d704 444
612a2d8a 445 public function delete_email($email)
0337d704 446 {
0337d704 447 if (!$this->other_active($email)) {
448 return ERROR_INACTIVE_REDIRECTION;
449 }
08cce2ff 450 XDB::execute('DELETE FROM emails WHERE uid={?} AND email={?}', $this->uid, $email);
732e5855 451 S::logger()->log('email_del',$email.($this->uid!=S::v('uid') ? " (admin on {$this->uid})" : ""));
11ed26e5
VZ
452 foreach ($this->emails as $i => $mail) {
453 if ($email == $mail->email) {
0337d704 454 unset($this->emails[$i]);
455 }
3c1e6a1e 456 }
ccdbc270 457 check_redirect($this);
0337d704 458 return SUCCESS;
459 }
460
441c2451 461 // public function add_email() {{{2
612a2d8a 462
463 public function add_email($email)
0337d704 464 {
0337d704 465 $email_stripped = strtolower(trim($email));
466 if (!isvalid_email($email_stripped)) {
467 return ERROR_INVALID_EMAIL;
468 }
469 if (!isvalid_email_redirection($email_stripped)) {
470 return ERROR_LOOP_EMAIL;
471 }
08cce2ff 472 XDB::execute('REPLACE INTO emails (uid,email,flags) VALUES({?},{?},"active")', $this->uid, $email);
3c1e6a1e 473 if ($logger = S::v('log', null)) { // may be absent --> step4.php
732e5855 474 S::logger()->log('email_add',$email.($this->uid!=S::v('uid') ? " (admin on {$this->uid})" : ""));
0337d704 475 }
3c1e6a1e 476 foreach ($this->emails as $mail) {
477 if ($mail->email == $email_stripped) {
0337d704 478 return SUCCESS;
479 }
3c1e6a1e 480 }
3d17e48f 481 $this->emails[] = new EmailRedirection($this->uid, array($email, 'active', '', false, null, '0000-00-00', '0000-00-00', 0));
ca6d07f4 482
483 // security stuff
a7de4ef7 484 check_email($email, "Ajout d'une adresse surveillée aux redirections de " . $this->uid);
ccdbc270 485 check_redirect($this);
0337d704 486 return SUCCESS;
487 }
488
441c2451 489 // public function modify_email() {{{2
0337d704 490
612a2d8a 491 public function modify_email($emails_actifs, $emails_rewrite)
0337d704 492 {
441c2451 493 foreach ($this->emails as &$mail) {
494 if (in_array($mail->email, $emails_actifs)) {
11ed26e5 495 $mail->activate();
3c1e6a1e 496 } else {
11ed26e5 497 $mail->deactivate();
3c1e6a1e 498 }
11ed26e5 499 $mail->set_rewrite($emails_rewrite[$mail->email]);
0337d704 500 }
ccdbc270 501 check_redirect($this);
0337d704 502 }
503
441c2451 504 // public function modify_one_email() {{{2
505
eaf30d86 506 public function modify_one_email($email, $activate)
ccdbc270 507 {
b7582015 508 $allinactive = true;
509 $thisone = false;
8ffa657a 510 foreach ($this->emails as $i=>$mail) {
511 if ($mail->email == $email) {
b7582015 512 $thisone = $i;
8ffa657a 513 }
11ed26e5 514 $allinactive &= !$mail->active || !$mail->sufficient || $mail->email == $email;
8ffa657a 515 }
b7582015 516 if ($thisone === false) {
517 return ERROR_INVALID_EMAIL;
518 }
ccdbc270 519 if ($allinactive || $activate) {
11ed26e5 520 $this->emails[$thisone]->activate();
ccdbc270 521 } else {
11ed26e5 522 $this->emails[$thisone]->deactivate();
ccdbc270 523 }
524 check_redirect($this);
b7582015 525 if ($allinactive && !$activate) {
526 return ERROR_INACTIVE_REDIRECTION;
527 } else {
528 return SUCCESS;
eaf30d86 529 }
8ffa657a 530 }
531
441c2451 532 // public function modify_one_email_redirect() {{{2
533
612a2d8a 534 public function modify_one_email_redirect($email, $redirect)
535 {
441c2451 536 foreach ($this->emails as &$mail) {
612a2d8a 537 if ($mail->email == $email) {
11ed26e5 538 $mail->set_rewrite($redirect);
ccdbc270 539 check_redirect($this);
540 return;
612a2d8a 541 }
542 }
543 }
441c2451 544
11ed26e5 545 // function clean_errors() {{{2
441c2451 546
11ed26e5 547 public function clean_errors($email)
441c2451 548 {
549 foreach ($this->emails as &$mail) {
550 if ($mail->email == $email) {
e1547442 551 check_redirect($this);
11ed26e5 552 return $mail->clean_errors();
441c2451 553 }
554 }
555 return false;
556 }
557
558 // function disable() {{{2
559
560 public function disable()
561 {
562 XDB::execute("UPDATE emails
563 SET flags = 'disable'
564 WHERE flags = 'active' AND uid = {?}", $this->uid);
565 foreach ($this->emails as &$mail) {
11ed26e5 566 if ($mail->active && $mail->has_disable()) {
441c2451 567 $mail->disabled = true;
568 $mail->active = false;
569 }
570 }
e1547442 571 check_redirect($this);
441c2451 572 }
573
574 // function enable() {{{2
575
576 public function enable()
577 {
578 XDB::execute("UPDATE emails
579 SET flags = 'active'
580 WHERE flags = 'disable' AND uid = {?}", $this->uid);
581 foreach ($this->emails as &$mail) {
582 if ($mail->disabled) {
583 $mail->active = true;
584 $mail->disabled = false;
585 }
e1547442 586 check_redirect($this);
441c2451 587 }
588 }
589
590 // function get_broken_mx() {{{2
ccdbc270 591
612a2d8a 592 public function get_broken_mx()
ccdbc270 593 {
3083bd93 594 $res = XDB::query("SELECT host, text
8af1d78f
FB
595 FROM mx_watch
596 WHERE state != 'ok'");
120bd636 597 if (!$res->numRows()) {
ccdbc270 598 return array();
599 }
c754cf5b 600 $mxs = $res->fetchAllAssoc();
ccdbc270 601 $mails = array();
602 foreach ($this->emails as &$mail) {
11ed26e5 603 if ($mail->active && strstr($mail->email, '@') !== false) {
ccdbc270 604 list(,$domain) = explode('@', $mail->email);
605 getmxrr($domain, $lcl_mxs);
606 if (empty($lcl_mxs)) {
607 $lcl_mxs = array($domain);
608 }
609 $broken = false;
610 foreach ($mxs as &$mx) {
611 foreach ($lcl_mxs as $lcl) {
c754cf5b 612 if (fnmatch($mx['host'], $lcl)) {
ccdbc270 613 $broken = $mx['text'];
614 break;
615 }
616 }
617 if ($broken) {
3083bd93 618 $mails[] = array('mail' => $mail->email, 'text' => $broken);
f653ff3d 619 break;
ccdbc270 620 }
621 }
622 }
623 }
624 return $mails;
625 }
e97e9b8f
VZ
626
627 // function active_emails() {{{2
628
629 public function active_emails()
630 {
631 $emails = array();
632 foreach ($this->emails as $mail) {
633 if ($mail->active) {
634 $emails[] = $mail;
635 }
636 }
637 return $emails;
638 }
45282934
VZ
639
640 // function get_uid() {{{2
641
642 public function get_uid()
643 {
644 return $this->uid;
645 }
0337d704 646}
647
a7de4ef7 648// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 649?>