3 /***************************************************************************
4 * Copyright (C) 2003-2009 Polytechnique.org *
5 * http://opensource.polytechnique.org/ *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the Free Software *
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
21 ***************************************************************************/
23 ini_set('include_path', '.:../include:/usr/share/php');
25 require_once('connect.db.inc.php');
26 require_once('emails.inc.php');
27 require_once('plmailer.php');
29 $opts = getopt('i:o:');
30 if (($opts['i'] && $opts['i'] == '-') ||
empty($opts['i'])) {
31 $file = 'php://stdin';
35 if (($opts['o'] && $opts['o'] == '-') ||
empty($opts['o'])) {
36 $output = 'php://stdout';
41 $emails = explode("\n", file_get_contents($file));
44 foreach ($emails as $_email) {
45 $email = valide_email($_email);
46 if (empty($email) ||
$email=='@') {
51 "SELECT e1.uid, e1.panne != 0 AS panne, count(e2.uid) AS nb_mails, u.nom, u.prenom, u.promo, a.alias
53 LEFT JOIN emails AS e2 ON (e1.uid = e2.uid AND FIND_IN_SET('active', e2.flags) AND e1.email != e2.email)
54 INNER JOIN auth_user_md5 AS u ON (e1.uid = u.user_id)
55 INNER JOIN aliases AS a ON (u.user_id = a.id AND FIND_IN_SET('bestalias',a.flags))
57 GROUP BY e1.uid", $email);
58 if ($x = $sel->fetchOneAssoc()) {
60 XDB
::execute("UPDATE emails
61 SET panne=NOW(), last=NOW(),
66 XDB
::execute("UPDATE emails
68 panne_level = panne_level + 1
70 AND DATE_ADD(last, INTERVAL 7 DAY) < CURDATE()", $email);
73 if (empty($x['nb_mails'])) {
74 echo "$email : seule adresse active de {$x['prenom']} {$x['nom']}\n";
76 $mail = new PlMailer('emails/broken.mail.tpl');
77 $mail->addTo("\"{$x['prenom']} {$x['nom']}\" <{$x['alias']}@" . $globals->mail
->domain
. '>');
78 $mail->assign('x', $x);
79 $mail->assign('email', $email);
81 echo "$email : mail envoyé\n";
84 if (!isset($list[$x['alias']])) {
85 $list[$x['alias']] = array($email);
87 $list[$x['alias']][] = $email;
90 echo "$email : cette adresse n'est pas dans la base\n";
94 XDB
::execute("UPDATE emails
95 SET panne_level = panne_level - 1
96 WHERE flags = 'active' AND panne_level > 1
97 AND last != CURDATE()");
98 XDB
::execute("UPDATE emails
100 WHERE flags = 'active' AND panne_level = 1
101 AND DATE_ADD(last, INTERVAL 1 YEAR) < CURDATE()");
103 $csv = "nom;prenom;promo;alias;bounce;nbmails\n";
104 foreach ($list as $alias=>$mails) {
106 "SELECT u.user_id, count(e.email) AS nb_mails, u.nom, u.prenom, u.promo
108 INNER JOIN auth_user_md5 AS u ON a.id = u.user_id
109 LEFT JOIN emails AS e ON (e.uid = u.user_id AND FIND_IN_SET('active', e.flags) AND e.panne = 0)
111 GROUP BY u.user_id", $alias);
112 if ($x = $sel->fetchOneAssoc()) {
113 $csv .= $x['nom'].';'.$x['prenom'].';' .$x['promo'].';'.$alias.';' . join(',', $mails) . ';'.$x['nb_mails']."\n";
117 $fo = fopen($output, 'w+');
121 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: