2008-01-13 13:56:48 +00:00
|
|
|
#!/usr/bin/php -q
|
|
|
|
<? /*
|
2008-04-06 19:45:09 +00:00
|
|
|
LibreSSL - CAcert web application
|
|
|
|
Copyright (C) 2004-2008 CAcert Inc.
|
2008-01-13 13:56:48 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
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; version 2 of the License.
|
2008-01-13 13:56:48 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
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.
|
2008-01-13 13:56:48 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
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
|
2008-01-13 13:56:48 +00:00
|
|
|
*/
|
|
|
|
include_once("../includes/mysql.php");
|
|
|
|
|
|
|
|
$lines = "";
|
2008-01-13 14:04:23 +00:00
|
|
|
$fp = fopen("cebitemail.txt", "r");
|
2008-01-13 13:56:48 +00:00
|
|
|
while(!feof($fp))
|
|
|
|
{
|
|
|
|
$line = trim(fgets($fp, 4096));
|
|
|
|
$lines .= wordwrap($line, 75, "\n")."\n";
|
|
|
|
}
|
|
|
|
fclose($fp);
|
|
|
|
|
|
|
|
$query = "select * from `users` where `id`='1'";
|
|
|
|
$query = "select * from `locations` where `id`='718475'";
|
|
|
|
$loc = mysql_fetch_assoc(mysql_query($query));
|
|
|
|
$query = "select `users`.* from `users`,`alerts`,`locations` where
|
|
|
|
((`lat` > ".$loc['lat']."-5 and `lat`<".$loc['lat']."+5 and `long`>".$loc['long']."-5 and `long`<".$loc['long']."+5) OR
|
|
|
|
`users`.`email` like '%.at' OR `users`.`email` like '%.fr' OR `users`.`email` like '%.de' OR
|
|
|
|
`users`.`email` like '%.nl' OR `users`.`email` like '%.be' OR `users`.`email` like '%.ch'
|
|
|
|
OR `users`.`email` like '%.es' OR `users`.`email` like '%.pt' OR `users`.`email` like '%.ee')and
|
|
|
|
(`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1) AND
|
|
|
|
`locations`.`id` = `users`.`locid` and `users`.`id`=`alerts`.`memid`";
|
|
|
|
// $query = "select * from `users` where `email`='eg@linuxkun.de'";
|
|
|
|
$res = mysql_query($query);
|
|
|
|
while($row = mysql_fetch_assoc($res))
|
|
|
|
{
|
|
|
|
sendmail($row['email'], "[CAcert.org] CeBIT 2006", $lines, "support@cacert.org", "", "", "CAcert Support", "returns@cacert.org", 1);
|
|
|
|
echo $row['email']."\n";
|
|
|
|
}
|
|
|
|
?>
|