Remove some remains of Community Framework 2.2
authorTim Düsterhus <duesterhus@woltlab.com>
Fri, 29 Jul 2016 12:10:37 +0000 (14:10 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Fri, 29 Jul 2016 12:10:37 +0000 (14:10 +0200)
wcfsetup/install/files/lib/system/email/Email.class.php
wcfsetup/install/files/lib/system/email/mime/AbstractMultipartMimePart.class.php
wcfsetup/install/files/lib/system/mail/DebugMailSender.class.php
wcfsetup/install/files/lib/system/mail/Mail.class.php
wcfsetup/install/files/lib/system/mail/MailSender.class.php
wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php
wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php

index 9178af0c272a696ed54d5eceb5e83c63c2694d2f..2df84bd107eb66e8f06a5129ec5e177a5b43e9ac 100644 (file)
@@ -482,7 +482,7 @@ class Email {
                        $mail = clone $this;
                        
                        if ($recipient['mailbox'] instanceof UserMailbox) {
-                               $mail->addHeader('X-Community-Framework-Recipient', $recipient['mailbox']->getUser()->username);
+                               $mail->addHeader('X-WoltLab-Suite-Recipient', $recipient['mailbox']->getUser()->username);
                        }
                        
                        if ($this->body instanceof IRecipientAwareMimePart) $this->body->setRecipient($recipient['mailbox']);
index 3abf8bee665a4c7b06787715f90787837e0be08a..798b83fc798bbdc14c072c08bce64353ce784565 100644 (file)
@@ -29,7 +29,7 @@ abstract class AbstractMultipartMimePart extends AbstractMimePart implements IRe
         * Sets the multipart boundary.
         */
        public function __construct() {
-               $this->boundary = "WoltLab_Community_Framework=_".StringUtil::getRandomID();
+               $this->boundary = "WoltLab_Suite=_".StringUtil::getRandomID();
                $this->parts = new \SplObjectStorage();
        }
        
index dbf41b1a8e59c7c44a988a1a16221a4929eab64e..b0ca59fa766b806b6d95d3641f8516113707aadf 100644 (file)
@@ -10,7 +10,7 @@ use wcf\system\io\File;
  * @copyright  2001-2016 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    WoltLabSuite\Core\Data\Mail
- * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*.
+ * @deprecated The Community Framework 2.x mail API is deprecated in favor of \wcf\system\email\*.
  */
 class DebugMailSender extends MailSender {
        /**
index d789d656e0e260a9f5f9b0a9a340e49c799d54bc..92dc9231e5df7e9a80ea120f51b06981beafbf51 100644 (file)
@@ -12,7 +12,7 @@ use wcf\util\StringUtil;
  * @copyright  2001-2016 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    WoltLabSuite\Core\Data\Mail
- * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*.
+ * @deprecated The Community Framework 2.x mail API is deprecated in favor of \wcf\system\email\*.
  */
 class Mail {
        /**
index 516c487ac7a105871cc89f7adfa525c0aa03eafb..51332b4fa6758371acceba4aa84ad73d32942ead 100644 (file)
@@ -8,7 +8,7 @@ namespace wcf\system\mail;
  * @copyright  2001-2016 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    WoltLabSuite\Core\Data\Mail
- * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*.
+ * @deprecated The Community Framework 2.x mail API is deprecated in favor of \wcf\system\email\*.
  */
 abstract class MailSender {
        /**
index 4405ee9d85881bdb003555c20007b8e1fb3ffabd..a6903b2701f76e755180a3725ddddf2163862a31 100644 (file)
@@ -8,7 +8,7 @@ namespace wcf\system\mail;
  * @copyright  2001-2016 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    WoltLabSuite\Core\Data\Mail
- * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*.
+ * @deprecated The Community Framework 2.x mail API is deprecated in favor of \wcf\system\email\*.
  */
 class PHPMailSender extends MailSender {
        /**
index e9093081925f513620bd0d1b8f7c5e09cabb4ef9..475f5bbe1366d85969aa325099a328fbfbb0bab2 100644 (file)
@@ -11,7 +11,7 @@ use wcf\util\StringUtil;
  * @copyright  2001-2016 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    WoltLabSuite\Core\Data\Mail
- * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*.
+ * @deprecated The Community Framework 2.x mail API is deprecated in favor of \wcf\system\email\*.
  */
 class SMTPMailSender extends MailSender {
        /**