X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FEmailer.php;h=8116fbf85017d646e03969a87e409aaee96d292c;hb=ec4f53d56f9aa2f82b1cf327a7f0869251fb1dbb;hp=a9da5346ddab96c72d15ac1c806d4e36c0b75b18;hpb=13c19fa9dacc88c1decb716cbf618f36bebacb55;p=friendica.git diff --git a/src/Util/Emailer.php b/src/Util/Emailer.php index a9da5346dd..8116fbf850 100644 --- a/src/Util/Emailer.php +++ b/src/Util/Emailer.php @@ -1,7 +1,24 @@ . + * */ + namespace Friendica\Util; use Friendica\App; @@ -9,7 +26,6 @@ use Friendica\Core\Config\IConfig; use Friendica\Core\Hook; use Friendica\Core\L10n; use Friendica\Core\PConfig\IPConfig; -use Friendica\Model\Notify; use Friendica\Network\HTTPException\InternalServerErrorException; use Friendica\Object\EMail\IEmail; use Friendica\Protocol\Email; @@ -48,7 +64,7 @@ class Emailer $this->l10n = $defaultLang; $this->siteEmailAddress = $this->config->get('config', 'sender_email'); - if (empty($sysEmailAddress)) { + if (empty($this->siteEmailAddress)) { $hostname = $this->baseUrl->getHostname(); if (strpos($hostname, ':')) { $hostname = substr($hostname, 0, strpos($hostname, ':')); @@ -94,8 +110,6 @@ class Emailer /** * Creates a new mail for notifications * - * @see Notify - * * @return NotifyMailBuilder */ public function newNotifyMail() @@ -120,6 +134,17 @@ class Emailer return true; } + // @see https://github.com/friendica/friendica/issues/9142 + $countMessageId = 0; + foreach ($email->getAdditionalMailHeader() as $name => $value) { + if (strtolower($name) == 'message-id') { + $countMessageId += count($value); + } + } + if ($countMessageId > 0) { + $this->logger->warning('More than one Message-ID found - RFC violation', ['email' => $email]); + } + $email_textonly = false; if (!empty($email->getRecipientUid())) { $email_textonly = $this->pConfig->get($email->getRecipientUid(), 'system', 'email_textonly'); @@ -137,7 +162,7 @@ class Emailer . rand(10000, 99999); // generate a multipart/alternative message header - $messageHeader = $email->getAdditionalMailHeader() . + $messageHeader = $email->getAdditionalMailHeaderString() . "From: $fromName <{$fromAddress}>\n" . "Reply-To: $fromName <{$replyTo}>\n" . "MIME-Version: 1.0\n" . @@ -183,15 +208,34 @@ class Emailer return true; } - $res = mail( + $res = $this->mail( $hookdata['to'], $hookdata['subject'], $hookdata['body'], $hookdata['headers'], $hookdata['parameters'] ); + $this->logger->debug('header ' . 'To: ' . $email->getToAddress() . '\n' . $messageHeader); $this->logger->debug('return value ' . (($res) ? 'true' : 'false')); + return $res; } + + /** + * Wrapper around the mail() method (mainly used to overwrite for tests) + * @see mail() + * + * @param string $to Recipient of this mail + * @param string $subject Subject of this mail + * @param string $body Message body of this mail + * @param string $headers Headers of this mail + * @param string $parameters Additional (sendmail) parameters of this mail + * + * @return boolean true if the mail was successfully accepted for delivery, false otherwise. + */ + protected function mail(string $to, string $subject, string $body, string $headers, string $parameters) + { + return mail($to, $subject, $body, $headers, $parameters); + } }