X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=NotifySend.php;h=91afa5a1b7c52f06a0e3f6f3f8841f1314150fed;hp=b709424df397626af3e314ff3f39758c3703b56a;hb=586e4eb470252d837ba18b67e4c3c1702131fd1d;hpb=03ab3f8630114c1602118b72d5ce88c026505fd1 diff --git a/NotifySend.php b/NotifySend.php index b709424d..91afa5a1 100644 --- a/NotifySend.php +++ b/NotifySend.php @@ -26,6 +26,8 @@ require_once 'Pman.php'; * Mail[helo] << helo host name * Mail[socket_options] << any socket option. */ +class Pman_Core_NotifySend_Exception_Success extends Exception {} +class Pman_Core_NotifySend_Exception_Fail extends Exception {} class Pman_Core_NotifySend extends Pman @@ -81,7 +83,7 @@ class Pman_Core_NotifySend extends Pman } - function get($id,$opts) + function get($id,$opts=array()) { //print_r($opts); @@ -95,7 +97,7 @@ class Pman_Core_NotifySend extends Pman $force = empty($opts['force']) ? 0 : 1; $w = DB_DataObject::factory($this->table); - + if (!$w->get($id)) { $this->errorHandler("invalid id\n"); } @@ -118,7 +120,7 @@ class Pman_Core_NotifySend extends Pman if (!$force && (!empty($w->msgid) || $sent)) { $ww = clone($w); if (!$sent) { - $w->sent = $w->sqlValue("NOW()"); + $w->sent = $w->sent == '0000-00-00 00:00:00' ? $w->sqlValue('NOW()') :$w->sent; // do not update if sent..... $w->update($ww); } $this->errorHandler("message has been sent already.\n"); @@ -131,7 +133,7 @@ class Pman_Core_NotifySend extends Pman $ev = $this->addEvent('NOTIFY', $w, "Notification event cleared (underlying object does not exist)" );; $ww = clone($w); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = $w->sent == '0000-00-00 00:00:00' ? $w->sqlValue('NOW()') :$w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; $w->update($ww); @@ -148,7 +150,7 @@ class Pman_Core_NotifySend extends Pman $ev = $this->addEvent('NOTIFY', $w, "Notification event cleared (not user not active any more)" );; $ww = clone($w); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = $w->sent == '0000-00-00 00:00:00' ? $w->sqlValue('NOW()') :$w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; $w->update($ww); @@ -202,7 +204,7 @@ class Pman_Core_NotifySend extends Pman $ev = $this->addEvent('NOTIFY', $w, "Notification event cleared (not required any more)" );; $ww = clone($w); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') : $w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; $w->update($ww); @@ -228,7 +230,7 @@ class Pman_Core_NotifySend extends Pman $ev = $this->addEvent('NOTIFY', $w, isset($email['error']) ? $email['error'] : "INTERNAL ERROR - We can not handle " . $w->ontable); $ww = clone($w); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') : $w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; $w->update($ww); @@ -276,7 +278,7 @@ class Pman_Core_NotifySend extends Pman if (!Validate::email($p->email, true)) { $ev = $this->addEvent('NOTIFY', $w, "INVALID ADDRESS: " . $p->email); $ww = clone($w); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') : $w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; $w->update($ww); @@ -287,8 +289,8 @@ class Pman_Core_NotifySend extends Pman $ff = HTML_FlexyFramework::get(); - - $dom = array_pop(explode('@', $p->email)); + $explode_email = explode('@', $p->email); + $dom = array_pop($explode_email); $mxs = $this->mxs($dom); $ww = clone($w); @@ -323,7 +325,7 @@ class Pman_Core_NotifySend extends Pman } $ev = $this->addEvent('NOTIFY', $w, "BAD ADDRESS - BAD DOMAIN - ". $p->email ); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') : $w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; $w->update($ww); @@ -337,7 +339,7 @@ class Pman_Core_NotifySend extends Pman if (!$force && strtotime($w->act_start) < strtotime('NOW - 14 DAY')) { $ev = $this->addEvent('NOTIFY', $w, "BAD ADDRESS - GIVE UP - ". $p->email ); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') :$w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; $w->update($ww); @@ -348,7 +350,8 @@ class Pman_Core_NotifySend extends Pman $w->to_email = $p->email; //$this->addEvent('NOTIFY', $w, 'GREYLISTED ' . $p->email . ' ' . $res->toString()); - $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + ' . $retry . ' MINUTES')); + // we can only update act_when if it has not been sent already (only happens when running in force mode..) + $w->act_when = (!$w->act_when || $w->act_when == '0000-00-00 00:00:00') ? date('Y-m-d H:i:s', strtotime('NOW + ' . $retry . ' MINUTES')) : $w->act_when; $w->update($ww); $ww = clone($w); @@ -356,9 +359,9 @@ class Pman_Core_NotifySend extends Pman $fail = false; require_once 'Mail.php'; - $core_domain = DB_DataObject::factory($core_domain); + $core_domain = DB_DataObject::factory('core_domain'); if(!$core_domain->get('domain', $dom)){ - $core_domain = DB_DataObject::factory($core_domain); + $core_domain = DB_DataObject::factory('core_domain'); $core_domain->setFrom(array( 'domain' => $dom )); @@ -389,17 +392,39 @@ class Pman_Core_NotifySend extends Pman $username = $ff->Mail['username'] ; $password = $ff->Mail['password'] ; - if(!empty($ff->Core_Notify)){ + if(!empty($ff->Core_Notify) && !empty($ff->Core_Notify['routes'])){ foreach ($ff->Core_Notify['routes'] as $server => $settings){ if(!in_array($dom, $settings['domains'])){ continue; } - $core_notify = DB_DataObject::factory('core_notify'); + // what's the minimum timespan.. - if we have 60/hour.. that's 1 every minute. + // if it's newer that '1' minute... + // then shunt it.. + + $seconds = floor((60 * 60) / $settings['rate']); + + $core_notify = DB_DataObject::factory($this->table); + $core_notify->domain_id = $core_domain->id; + $core_notify->whereAdd(" + sent >= NOW() - INTERVAL $seconds SECONDS + "); + + if($core_notify->count()){ + $old = clone($w); + $w->act_when = date("Y-m-d H:i:s", time() + $seconds); + $w->update($old); + $this->errorHandler(date('Y-m-d h:i:s ') . " Too many emails sent by {$dom}"); + } + + // that make's this test obsolete... + /* + + $core_notify = DB_DataObject::factory($this->table); $core_notify->domain_id = $core_domain->id; $core_notify->whereAdd(" - sent >= NOW - INTERVAL 1 HOUR + sent >= NOW() - INTERVAL 1 HOUR "); if($core_notify->count() >= $settings['rate']){ @@ -408,6 +433,9 @@ class Pman_Core_NotifySend extends Pman $w->update($old); $this->errorHandler(date('Y-m-d h:i:s ') . " Too many emails sent by {$dom}"); } + */ + + $mailer->host = $server; $username = $settings['username']; @@ -429,11 +457,17 @@ class Pman_Core_NotifySend extends Pman if ($res === true) { // success.... - $ev = $this->addEvent('NOTIFYSENT', $w, "{$w->to_email} - {$email['headers']['Subject']}"); + $successEventName = (empty($email['successEventName'])) ? 'NOTIFYSENT' : $email['successEventName']; + + $ev = $this->addEvent($successEventName, $w, "{$w->to_email} - {$email['headers']['Subject']}"); $ev->writeEventLog($this->debug_str); - $w->sent = date('Y-m-d H:i:s'); + if(strtotime($w->act_when) > strtotime("NOW")){ + $w->act_when = date('Y-m-d H:i:s'); + } + + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') : $w->sent; // do not update if sent..... $w->msgid = $email['headers']['Message-Id']; $w->event_id = $ev->id; // sent ok.. - no need to record it.. $w->domain_id = $core_domain->id; @@ -461,7 +495,7 @@ class Pman_Core_NotifySend extends Pman } - $this->errorHandler(date('Y-m-d h:i:s') . " - SENT {$w->id} - {$w->to_email} \n"); + $this->errorHandler(date('Y-m-d h:i:s') . " - SENT {$w->id} - {$w->to_email} \n", true); } // what type of error.. $code = empty($res->userinfo['smtpcode']) ? -1 : $res->userinfo['smtpcode']; @@ -504,9 +538,10 @@ class Pman_Core_NotifySend extends Pman $ev = $this->addEvent('NOTIFY', $w, ($fail ? "FAILED - " : "RETRY TIME EXCEEDED - ") . $errmsg); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') : $w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; + $w->domain_id = $core_domain->id; $w->update($ww); $this->errorHandler(date('Y-m-d h:i:s') . ' - FAILED - '. ($fail ? $res->toString() : "RETRY TIME EXCEEDED\n")); } @@ -514,9 +549,10 @@ class Pman_Core_NotifySend extends Pman // handle no host availalbe forever... if (strtotime($w->act_start) < strtotime('NOW - 3 DAYS')) { $ev = $this->addEvent('NOTIFY', $w, "RETRY TIME EXCEEDED - ". $p->email); - $w->sent = date('Y-m-d H:i:s'); + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') : $w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; + $w->domain_id = $core_domain->id; $w->update($ww); $this->errorHandler(date('Y-m-d h:i:s') . " - FAILED - RETRY TIME EXCEEDED\n"); } @@ -524,6 +560,7 @@ class Pman_Core_NotifySend extends Pman $this->addEvent('NOTIFY', $w, 'NO HOST CAN BE CONTACTED:' . $p->email); $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + 5 MINUTES')); + $w->domain_id = $core_domain->id; $w->update($ww); $this->errorHandler(date('Y-m-d h:i:s') ." - NO HOST AVAILABLE\n"); @@ -585,7 +622,11 @@ class Pman_Core_NotifySend extends Pman return $object->$m($rcpt, $last_sent_date, $notify, $force); } - if (!method_exists($object, 'toEmail')) { + if (method_exists($object, 'toMailerData')) { + return $object->toMailerData(array( + 'rcpts'=>$rcpt, + 'person'=>$rcpt, // added as mediaoutreach used this? + )); //this is core_email - i think it's only used for testing... //var_Dump($object); //exit; } @@ -613,10 +654,14 @@ class Pman_Core_NotifySend extends Pman $this->debug_str .= $message; } - function errorHandler($msg) + function errorHandler($msg, $success = false) { if($this->error_handler == 'exception'){ - throw new Exception($msg); + if($success){ + throw new Pman_Core_NotifySend_Exception_Success($msg); + } + + throw new Pman_Core_NotifySend_Exception_Fail($msg); } die($msg);