X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FMail.php;h=67d5d1ddca3371a9152ccce1bffe7ae3c369410d;hb=018abb4d1dfbe0bf29b441dce281d89a437075b4;hp=de351db4aae333ef75c1c96853be22640800ee0c;hpb=ab8997f9db910ba70c592bf106a7f5fc41a55b2d;p=friendica.git diff --git a/src/Model/Mail.php b/src/Model/Mail.php index de351db4aa..67d5d1ddca 100644 --- a/src/Model/Mail.php +++ b/src/Model/Mail.php @@ -1,8 +1,24 @@ . + * */ + namespace Friendica\Model; use Friendica\Core\Logger; @@ -10,7 +26,7 @@ use Friendica\Core\System; use Friendica\Core\Worker; use Friendica\DI; use Friendica\Database\DBA; -use Friendica\Network\Probe; +use Friendica\Model\Notify\Type; use Friendica\Protocol\Activity; use Friendica\Util\DateTimeFormat; use Friendica\Worker\Delivery; @@ -68,14 +84,14 @@ class Mail // send notifications. $notif_params = [ - 'type' => NOTIFY_MAIL, + 'type' => Type::MAIL, 'notify_flags' => $user['notify-flags'], 'language' => $user['language'], 'to_name' => $user['username'], 'to_email' => $user['email'], 'uid' => $user['uid'], 'item' => $msg, - 'parent' => 0, + 'parent' => $msg['id'], 'source_name' => $msg['from-name'], 'source_link' => $msg['from-url'], 'source_photo' => $msg['from-photo'], @@ -250,8 +266,7 @@ class Mail $guid = System::createUUID(); $uri = Item::newURI(local_user(), $guid); - $me = Probe::uri($replyto); - + $me = Contact::getByURL($replyto); if (!$me['name']) { return -2; } @@ -260,10 +275,7 @@ class Mail $recip_handle = $recipient['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3); - $sender_nick = basename($replyto); - $sender_host = substr($replyto, strpos($replyto, '://') + 3); - $sender_host = substr($sender_host, 0, strpos($sender_host, '/')); - $sender_handle = $sender_nick . '@' . $sender_host; + $sender_handle = $me['addr']; $handles = $recip_handle . ';' . $sender_handle; @@ -296,7 +308,7 @@ class Mail 'reply' => 0, 'replied' => 0, 'uri' => $uri, - 'parent-uri' => $replyto, + 'parent-uri' => $me['url'], 'created' => DateTimeFormat::utcNow(), 'unknown' => 1 ]