summaryrefslogtreecommitdiff
path: root/scripts/newslettercebit.php
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/newslettercebit.php')
-rwxr-xr-xscripts/newslettercebit.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/scripts/newslettercebit.php b/scripts/newslettercebit.php
new file mode 100755
index 0000000..9fd64d1
--- /dev/null
+++ b/scripts/newslettercebit.php
@@ -0,0 +1,47 @@
+#!/usr/bin/php -q
+<? /*
+ LibreSSL - CAcert web application
+ Copyright (C) 2004-2008 CAcert Inc.
+
+ 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.
+
+ 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.
+
+ 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
+*/
+ include_once("../includes/mysql.php");
+
+ $lines = "";
+ $fp = fopen("cebitemail.txt", "r");
+ 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";
+ }
+?>