Remove AWS SES from feedback email
--- a/feedback.php
+++ b/feedback.php
@@ -5,25 +5,11 @@
function sendEmail($topic, $message)
{
$address = "maxious@lambdacomplex.org";
- if (file_exists("/tmp/aws.php")) {
- include_once ("lib/ses.php");
- include_once ("/tmp/aws.php");
- $con = new SimpleEmailService($accessKey, $secretKey);
- //$con->verifyEmailAddress($address);
- //$con->listVerifiedEmailAddresses();
- $m = new SimpleEmailServiceMessage();
- $m->addTo($address);
- $m->setFrom($address);
- $m->setSubject($topic);
- $m->setMessageFromString($message);
- $con->sendEmail($m);
- }
- else {
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
// Send
mail($address, $topic, $message);
- }
+
}
if (isset($_REQUEST['feedback']) || isset($_REQUEST['newlocation'])){
sendEmail("bus.lambda feedback",print_r($_REQUEST,true));
--- a/myway/myway_timeliness_stop.php
+++ b/myway/myway_timeliness_stop.php
@@ -75,9 +75,6 @@
var dataurl = "myway_timeliness_stop.json.php?stopid=" + select.val();
// then fetch the data with jQuery
function onDataReceived(series) {
- // extract the first coordinate pair so you can see that
- // data is now an ordinary Javascript object
- var firstcoordinate = '(' + series.data[0][0] + ', ' + series.data[0][1] + ')';
// let's add it to our current data