Add mailing scripts for ATE at FrOsCon, Sankt Augustin, Germany in August 2015.
This commit is contained in:
parent
40322cf67d
commit
0fc491d308
2 changed files with 184 additions and 0 deletions
33
scripts/62de-froscon2015-email.txt
Normal file
33
scripts/62de-froscon2015-email.txt
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
Hallo,
|
||||||
|
|
||||||
|
CAcert wird dieses Jahr zum zehnten Mal mit einem Stand auf der FrOSCon
|
||||||
|
vertreten sein. Damit gehoert CAcert zu den Projekten, die bei allen zehn
|
||||||
|
Auflagen der FrOSCon dabei waren.
|
||||||
|
|
||||||
|
CAcert wird neben dem Stand, an dem wie ueblich Assured und ueber CAcert
|
||||||
|
informiert wird, auch mit einem Projektraum vertreten sein. In diesem
|
||||||
|
Projektraum wird an aktuellen Softwareentwicklungen bei CAcert gearbeitet,
|
||||||
|
z.B. Test der Root Erstellung, Gigi/Cassiopeia dem Redesign der Software.
|
||||||
|
|
||||||
|
Wir hoffen, dass wir viele von Euch auf der FrOSCon treffen werden.
|
||||||
|
|
||||||
|
Wann?
|
||||||
|
- Samstag + Sonntag, 22. + 23. August 2015
|
||||||
|
- Einlass Samstag ab 08:30h und Sonntag ab 09:00h
|
||||||
|
|
||||||
|
Ort:
|
||||||
|
- in der Hochschule Bonn-Rhein-Sieg
|
||||||
|
- Grantham-Allee 20
|
||||||
|
- 53757 Sankt Augustin
|
||||||
|
|
||||||
|
Tickets
|
||||||
|
- Der Eintritt ist in diesem Jahr frei!
|
||||||
|
|
||||||
|
|
||||||
|
Euer Event Team
|
||||||
|
|
||||||
|
Kontakt: events@cacert.org
|
||||||
|
|
||||||
|
|
||||||
|
[1] [https://www.froscon.de]
|
||||||
|
[2] [https://wiki.cacert.org/Events/FrOSCon2015]
|
151
scripts/62de-froscon2015-mail.php.txt
Normal file
151
scripts/62de-froscon2015-mail.php.txt
Normal file
|
@ -0,0 +1,151 @@
|
||||||
|
#!/usr/bin/php -q
|
||||||
|
<? /*
|
||||||
|
LibreSSL - CAcert web application
|
||||||
|
Copyright (C) 2004-2013 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("62de-froscon2015-email.txt", "r");
|
||||||
|
while(!feof($fp))
|
||||||
|
{
|
||||||
|
$line = trim(fgets($fp, 4096));
|
||||||
|
$lines .= wordwrap($line, 75, "\n")."\n";
|
||||||
|
}
|
||||||
|
fclose($fp);
|
||||||
|
|
||||||
|
|
||||||
|
// $locid = intval($_REQUEST['location']);
|
||||||
|
// $maxdist = intval($_REQUEST['maxdist']);
|
||||||
|
// maxdist in [Km]
|
||||||
|
$maxdist = 200;
|
||||||
|
|
||||||
|
|
||||||
|
// location location.ID
|
||||||
|
// verified: 29.4.09 u.schroeter
|
||||||
|
// $locid = 7902857; // Paris
|
||||||
|
// $locid = 238568; // Bielefeld
|
||||||
|
// $locid = 715191; // Hamburg
|
||||||
|
// $locid = 1102495; // London
|
||||||
|
// $locid = 606058; // Frankfurt
|
||||||
|
// $locid = 1775784; // Stuttgart
|
||||||
|
// $locid = 228950; // Berlin
|
||||||
|
// $locid = 606058; // Frankfurt
|
||||||
|
// $locid = 599389; // Flensburg
|
||||||
|
// $locid = 61065; // Amsterdam, Eemnes
|
||||||
|
// $locid = 228950; // Berlin
|
||||||
|
// $locid = 2138880; // Baltimore (Baltimore (city)), Maryland, United States
|
||||||
|
// $locid = 1486658; // Potsdam
|
||||||
|
// $locid = 664715; // Goteborg, Vastra Gotaland, Sweden
|
||||||
|
// $locid = 2094781; // Mission Hills (Los Angeles), California, United States
|
||||||
|
// $locid = 423655; // Copenhagen, Kobenhavn*, Denmark
|
||||||
|
// $locid = 2093625; // Los Angeles, CA ???
|
||||||
|
// $locid = 2094326 // Los Angeles (Los Angeles), California, United States
|
||||||
|
// $locid = 2257312; // Sydney, New South Wales, Australia
|
||||||
|
// $locid = 572764; // Essen, Nordrhein-Westfalen, Germany
|
||||||
|
// $locid = 78; // Aachen, Nordrhein-Westfalen, Germany
|
||||||
|
// $locid = 1260319; // Muenchen
|
||||||
|
// $locid = 266635; // Bonn, Nordrhein-Westfalen, Germany
|
||||||
|
// $locid = 873779; // Karlsruhe, Baden-Wuerttemberg, Germany
|
||||||
|
// $locid = 520340; // Dusseldorf, Nordrhein-Westfalen, Germany
|
||||||
|
// $locid = 2262656; // Melbourne, Victoria, Australia
|
||||||
|
// $locid = 2185076; // Raleigh (Wake), North Carolina, United States
|
||||||
|
// $locid = 2126955; // Lawrence (Douglas), Kansas, United States
|
||||||
|
// $locid = 919560; // Kiel, Schleswig-Holstein, Germany
|
||||||
|
// $locid = 228950; // Berlin
|
||||||
|
// $locid = 1117395; // Lubeck Hansestadt, Schleswig-Holstein, Germany
|
||||||
|
// $locid = 675661; // Graz, Steiermark, Austria
|
||||||
|
// $locid = 1992733; // Wien, Wien, Austria
|
||||||
|
|
||||||
|
// $locid = ; 54334 // Amberg, Bayern, Germany
|
||||||
|
// $eventname = "ATE-Amberg";
|
||||||
|
// $city = "06. Januar 2014";
|
||||||
|
|
||||||
|
// $locid = 1089877; // Linz, Oberoesterreich, Austria
|
||||||
|
// $eventname = "ATE-Linz";
|
||||||
|
// $city = "16. Mai 2014";
|
||||||
|
|
||||||
|
// $locid = 1993029; // Wiesbaden, Hessen, Germany
|
||||||
|
// $eventname = "ATE-Wiesbaden";
|
||||||
|
// $city = "22. Mai 2014";
|
||||||
|
|
||||||
|
|
||||||
|
// $locid = 1356196; // Oberwart, Burgenland, Germany
|
||||||
|
// $eventname = "ATE-Oberwart (Korrektur)";
|
||||||
|
// $city = "27. Juni 2014";
|
||||||
|
|
||||||
|
// $locid = 675661; // Graz, Steiermark, Austria
|
||||||
|
// $eventname = "ATE-Graz";
|
||||||
|
// $city = "13. November 2014";
|
||||||
|
|
||||||
|
// $locid = 1992733; // Wien, Wien, Austria
|
||||||
|
// $eventname = "ATE-Wien";
|
||||||
|
// $city = "19. November 2014";
|
||||||
|
|
||||||
|
// $locid = 606775; // Freiburg, Baden-Wuertemberg, Germany
|
||||||
|
// $eventname = "ATE-Freiburg";
|
||||||
|
// $city = "2. Februar 2015";
|
||||||
|
|
||||||
|
// $locid = 281755; // Bremen, Bremen, Germany
|
||||||
|
// $eventname = "ATE-Bremen";
|
||||||
|
// $city = "5. Mai 2015";
|
||||||
|
|
||||||
|
// $locid = 510891; // Dresden, Sachsen, Germany
|
||||||
|
// $eventname = "ATE-Dresden";
|
||||||
|
// $city = "12. Mai 2015";
|
||||||
|
|
||||||
|
$locid = 1631926; // Sankt Augustin, Nordrhein-Westfalen, Germany
|
||||||
|
$eventname = "CAcert auf der FrOSCon 2015";
|
||||||
|
$city = "22. und 23. August";
|
||||||
|
|
||||||
|
|
||||||
|
$query = "select * from `locations` where `id`='$locid'";
|
||||||
|
$loc = mysql_fetch_assoc(mysql_query($query));
|
||||||
|
|
||||||
|
$query = "SELECT ROUND(6378.137 * ACOS(0.9999999*((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) +
|
||||||
|
(COS(PI() * $loc[lat] / 180 ) * COS(PI() * `locations`.`lat` / 180) *
|
||||||
|
COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))), -1) AS `distance`, sum(`points`) as pts, `users`.*
|
||||||
|
FROM `locations`
|
||||||
|
inner join `users` on `users`.`locid` = `locations`.`id`
|
||||||
|
inner join `alerts` on `users`.`id`=`alerts`.`memid`
|
||||||
|
inner join `notary` on `users`.`id`=`notary`.`to`
|
||||||
|
WHERE (`alerts`.`general`=1 OR `alerts`.`country`=1 OR `alerts`.`regional`=1 OR `alerts`.`radius`=1)
|
||||||
|
GROUP BY `users`.`id`
|
||||||
|
HAVING `distance` <= '$maxdist'
|
||||||
|
ORDER BY `distance` ";
|
||||||
|
echo $query;
|
||||||
|
|
||||||
|
// comment next line when starting to send mail not only to me
|
||||||
|
// $query = "select * from `users` where `email` like 'cacerttest%'";
|
||||||
|
|
||||||
|
$res = mysql_query($query);
|
||||||
|
$xrows = mysql_num_rows($res);
|
||||||
|
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
// uncomment next line to send mails ...
|
||||||
|
sendmail($row['email'], "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1);
|
||||||
|
}
|
||||||
|
// 1x cc to events.cacert.org
|
||||||
|
sendmail("events@cacert.org", "[CAcert.org] $eventname - $city", $lines, "events@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1);
|
||||||
|
// 1x mailing report to events.cacert.org
|
||||||
|
sendmail("events@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1);
|
||||||
|
|
||||||
|
// 1x mailing report to Arbitrator of case http://wiki.cacert.org/wiki/Arbitrations/a20090525.1
|
||||||
|
sendmail("p.dunkel@cacert.org", "[CAcert.org] $eventname - $city Report", "invitation sent to $xrows recipients.", "support@cacert.org", "", "", "CAcert Events Organisation", "returns@cacert.org", 1);
|
||||||
|
echo "invitation sent to $xrows recipients.\n";
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in a new issue