Add mailing scripts for CAcert Assurer Training Event in Jena, Germany
on March 29, 2012.
This commit is contained in:
parent
c3490932bb
commit
cb10487370
2 changed files with 142 additions and 0 deletions
33
scripts/41de-ate-jena-email.txt
Normal file
33
scripts/41de-ate-jena-email.txt
Normal file
|
@ -0,0 +1,33 @@
|
|||
CAcert Assurer Training Event Jena [Deutsch]
|
||||
::::::::::::::::::::::::::::::::::::::::::::
|
||||
|
||||
Es hat sich viel getan im letzten Jahr. Eine ganze Reihe von bisher eher "muendlich ueberlieferten" Regeln wurden in Policies gegossen. Neue Prozeduren (z.B. die Assurer Challenge) und Verpflichtungen (z.B. in dem CAcert Community Agreement) wurden beschlossen. Die Assurer Training Events wollen versuchen, die ganzen Informationen unter’s Volk zu bringen:
|
||||
|
||||
- Was hast du auf dem CAP Formular hinzuzufuegen, wenn du Minderjaehrige ueberpruefst ?
|
||||
- Warum solltest du dir R/L/O einpraegen ?
|
||||
- Wie verhaelst du dich, wenn du ein fremdes Ausweis Dokument das erste mal pruefst ?
|
||||
|
||||
Antworten auf diese und weitere Fragen erhaelst du bei den Assurer Training Events (ATEs).
|
||||
|
||||
Die kommende Veranstaltung in deiner Naehe findet statt am:
|
||||
|
||||
Donnerstag den 29. Maerz 2012, 19:00 - 22:00
|
||||
|
||||
Adresse: Am Johannisfriedhof 2, Jena
|
||||
Gebaeude: Universitaetsrechenzentrum der Friedrich-Schiller-Universitaet Jena
|
||||
OSM: [http://osm.org/go/0MAe9XhNp-]
|
||||
Webseite: [http://www.uni-jena.de/URZ.html]
|
||||
|
||||
|
||||
Das Veranstaltungs-Team freut sich schon auf Eure Teilnahme.
|
||||
|
||||
Details zum Veranstaltungsort und Anfahrthinweise findet Ihr im
|
||||
Wiki [https://wiki.cacert.org/Events/2012-03-29ATE-Jena]
|
||||
Blog [http://blog.cacert.org/2012/03/550.html]
|
||||
|
||||
|
||||
|
||||
Unverbindliche Anmeldung und Registrierung:
|
||||
Rueckantwort mit 'Ich moechte teilnehmen: ATE-Jena'
|
||||
|
||||
Kontakt: events@cacert.org
|
109
scripts/41de-ate-jena-mail.php.txt
Normal file
109
scripts/41de-ate-jena-mail.php.txt
Normal file
|
@ -0,0 +1,109 @@
|
|||
#!/usr/bin/php -q
|
||||
<? /*
|
||||
LibreSSL - CAcert web application
|
||||
Copyright (C) 2004-2009 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("41de-ate-jena-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] - changed to 350 to include glasgow + london
|
||||
$maxdist = 200;
|
||||
|
||||
|
||||
// location location.ID
|
||||
// verified: 29.4.09 u.schroeter
|
||||
// $locid = 7902857; // Paris
|
||||
// $locid = 238568; // Bielefeld
|
||||
// $locid = 715191; // Hamburg
|
||||
// $locid = 1102495; // London
|
||||
// $locid = 520340; // Duesseldorf
|
||||
// $locid = 1260319; // Muenchen
|
||||
// $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, US
|
||||
// $locid = 1486658; // Potsdam
|
||||
// $locid = 664715; // Goteborg, Vastra Gotaland, Sweden
|
||||
// $locid = 2094781; // Mission Hills (Los Angeles), California, US
|
||||
// $locid = 423655; // Copenhagen, Kobenhavn*, Denmark
|
||||
// $locid = 2257312; // Sydney, New South Wales, Australia
|
||||
// $locid = 572764; // Essen, Nordrhein-Westfalen, Germany
|
||||
// $locid = 78; // Aachen, Nordrhein-Westfalen, Germany
|
||||
// $locid = 266635; // Bonn, Nordrhein-Westfalen, Germany
|
||||
// $locid = 2102723; // Washington (District of Columbia, ..., US
|
||||
// $locid = 2177566; // New York (Bronx), New York, United States
|
||||
// $locid = 1486658; // Potsdam BLIT2011
|
||||
// $locid = 2237836; // Blacksburg (Montgomery), Virginia, United States
|
||||
// $locid = 1161640; // Manchester, Manchester, United Kingdom
|
||||
|
||||
// ATE Jena, DE, Mar 29 2012
|
||||
$locid = 803095; // Jena, Thueringen, Germany
|
||||
$eventname = "ATE-Jena";
|
||||
$city = "Mar 29, 2012";
|
||||
|
||||
|
||||
$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