X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fplmailer.php;h=8c3c8dd31c3fbbbca6ff68d71dff8c87d166c4c2;hb=ca6384fb36992e0899efea20ea1082bfc77d7c41;hp=45f3a8a6044a7e188e40446a42cd566d05eb8f7b;hpb=5ec9aef340bb31adb4f70f8a791623893b6f23a6;p=platal.git diff --git a/classes/plmailer.php b/classes/plmailer.php index 45f3a8a..8c3c8dd 100644 --- a/classes/plmailer.php +++ b/classes/plmailer.php @@ -1,6 +1,6 @@ fullName() . '" <' . $user->bestEmail() . '>'; + } + /** * converts all : Foo Bar Baz into "Foo Bar Baz" which is RFC compliant */ private function correct_emails($email) { + if ($email instanceof PlUser) { + $email = self::formatUser($email); + } return preg_replace('!(^|, *)([^<"]+?) *(<[^>]*>)!u', '\1"\2" \3', $email); } @@ -203,7 +211,7 @@ class PlMailer extends Mail_Mime { public function setSubject($subject) { - if (!preg_match('/^[\x21-\x3C\x3e-\x7e]*$/', $subject)) { + if (!preg_match('/^[\x20-\x7e]*$/', $subject)) { $subject = '=?UTF-8?Q?' . preg_replace('/[^\x21-\x3C\x3e-\x7e]/e', 'PlMailer::encodeQP("\0")', $subject) . '?='; } @@ -283,6 +291,7 @@ class PlMailer extends Mail_Mime { if (!($globals->debug & DEBUG_SMARTY)) { $level = error_reporting(0); } + $this->page->assign_by_ref('globals', $globals); $this->page->run('head'); // process page headers $this->wiki = trim($this->page->run('wiki')); // get wiki if (!$this->wiki) { @@ -306,19 +315,22 @@ class PlMailer extends Mail_Mime { } } + public function sendTo(PlUser &$user) + { + $this->addTo($user); + $this->assign_by_ref('user', $user); + return $this->send($user->isEmailFormatHtml()); + } + public function send($with_html = true) { $this->processPage($with_html); if (S::user()) { $this->addHeader('X-Org-Mail', S::user()->forlifeEmail()); - } else if (S::v('forlife')) { - // TODO(vzanotti): trash this code when hruid will be part of master. - global $globals; - $this->addHeader('X-Org-Mail', S::v('forlife') . '@' . $globals->mail->domain); } $addrs = Array(); - foreach(Array('To', 'Cc', 'Bcc') as $hdr) { - if(isset($this->_headers[$hdr])) { + foreach (Array('To', 'Cc', 'Bcc') as $hdr) { + if (isset($this->_headers[$hdr])) { require_once 'Mail/RFC822.php'; $parsed = @Mail_RFC822::parseAddressList($this->_headers[$hdr]); if (is_array($parsed)) { @@ -326,15 +338,26 @@ class PlMailer extends Mail_Mime { } } } - if(empty($addrs)) { + if (empty($addrs)) { return false; } $dests = Array(); - foreach($addrs as $a) { + foreach ($addrs as $a) { $dests[] = "{$a->mailbox}@{$a->host}"; } + // Support for a "catch-all" email address, to be used by developers. + // This mode can only be activated when the working copy is in restricted + // mode, to ensure that production plat/al copies are never affected. + global $globals; + if ($globals->email_catchall && $globals->core->restricted_platal) { + require_once 'Mail/RFC822.php'; + if (@Mail_RFC822::isValidInetAddress($globals->email_catchall)) { + $dests = array($globals->email_catchall); + } + } + // very important to do it in THIS order very precisely. $body = $this->get(array('text_charset' => $this->charset, 'text_encoding' => '8bit',