Merge pull request #9791 from nextcloud/3rdparty/noid/bump_swiftmailer

Upgrade to swiftmailer-6
This commit is contained in:
Joas Schilling 2018-07-06 10:39:09 +02:00 committed by GitHub
commit 3ade347b0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 86 additions and 67 deletions

@ -1 +1 @@
Subproject commit 7d055b064564a2bc5c4109860b12b6b30202f508 Subproject commit b995ca8b8c7f69a180ad6fb49989ad3e35b1367e

View File

@ -328,24 +328,19 @@ $CONFIG = array(
'mail_smtpdebug' => false, 'mail_smtpdebug' => false,
/** /**
* Which mode to use for sending mail: ``sendmail``, ``smtp``, ``qmail`` or * Which mode to use for sending mail: ``sendmail``, ``smtp`` or ``qmail``.
* ``php``.
* *
* If you are using local or remote SMTP, set this to ``smtp``. * If you are using local or remote SMTP, set this to ``smtp``.
* *
* If you are using PHP mail you must have an installed and working email system
* on the server. The program used to send email is defined in the ``php.ini``
* file.
*
* For the ``sendmail`` option you need an installed and working email system on * For the ``sendmail`` option you need an installed and working email system on
* the server, with ``/usr/sbin/sendmail`` installed on your Unix system. * the server, with ``/usr/sbin/sendmail`` installed on your Unix system.
* *
* For ``qmail`` the binary is /var/qmail/bin/sendmail, and it must be installed * For ``qmail`` the binary is /var/qmail/bin/sendmail, and it must be installed
* on your Unix system. * on your Unix system.
* *
* Defaults to ``php`` * Defaults to ``smtp``
*/ */
'mail_smtpmode' => 'php', 'mail_smtpmode' => 'smtp',
/** /**
* This depends on ``mail_smtpmode``. Specify the IP address of your mail * This depends on ``mail_smtpmode``. Specify the IP address of your mail

View File

@ -293,6 +293,18 @@
type: OC.SetupChecks.MESSAGE_TYPE_WARNING type: OC.SetupChecks.MESSAGE_TYPE_WARNING
}) })
} }
if (data.isPhpMailerUsed) {
messages.push({
msg: t(
'core',
'Use of the the built in php mailer is no longer supported. <a target="_blank" rel="noreferrer noopener" href="{docLink}">Please update your email server settings ↗<a/>.',
{
docLink: data.mailSettingsDocumentation,
}
),
type: OC.SetupChecks.MESSAGE_TYPE_WARNING
});
}
} else { } else {
messages.push({ messages.push({
msg: t('core', 'Error occurred while checking server setup'), msg: t('core', 'Error occurred while checking server setup'),

View File

@ -26,6 +26,8 @@ declare(strict_types=1);
namespace OC\Mail; namespace OC\Mail;
use Egulias\EmailValidator\EmailValidator;
use Egulias\EmailValidator\Validation\RFCValidation;
use OCP\Defaults; use OCP\Defaults;
use OCP\IConfig; use OCP\IConfig;
use OCP\IL10N; use OCP\IL10N;
@ -55,7 +57,7 @@ use OCP\Mail\IMessage;
* @package OC\Mail * @package OC\Mail
*/ */
class Mailer implements IMailer { class Mailer implements IMailer {
/** @var \Swift_SmtpTransport|\Swift_SendmailTransport|\Swift_MailTransport Cached transport */ /** @var \Swift_Mailer Cached mailer */
private $instance = null; private $instance = null;
/** @var IConfig */ /** @var IConfig */
private $config; private $config;
@ -105,7 +107,7 @@ class Mailer implements IMailer {
* @since 13.0.0 * @since 13.0.0
*/ */
public function createAttachment($data = null, $filename = null, $contentType = null): IAttachment { public function createAttachment($data = null, $filename = null, $contentType = null): IAttachment {
return new Attachment(\Swift_Attachment::newInstance($data, $filename, $contentType)); return new Attachment(new \Swift_Attachment($data, $filename, $contentType));
} }
/** /**
@ -194,7 +196,10 @@ class Mailer implements IMailer {
* @return bool True if the mail address is valid, false otherwise * @return bool True if the mail address is valid, false otherwise
*/ */
public function validateMailAddress(string $email): bool { public function validateMailAddress(string $email): bool {
return \Swift_Validate::email($this->convertEmail($email)); $validator = new EmailValidator();
$validation = new RFCValidation();
return $validator->isValid($this->convertEmail($email), $validation);
} }
/** /**
@ -215,32 +220,24 @@ class Mailer implements IMailer {
return $name.'@'.$domain; return $name.'@'.$domain;
} }
/** protected function getInstance(): \Swift_Mailer {
* Returns whatever transport is configured within the config
*
* @return \Swift_SmtpTransport|\Swift_SendmailTransport|\Swift_MailTransport
*/
protected function getInstance() {
if (!is_null($this->instance)) { if (!is_null($this->instance)) {
return $this->instance; return $this->instance;
} }
switch ($this->config->getSystemValue('mail_smtpmode', 'php')) { $transport = null;
case 'smtp':
$this->instance = $this->getSmtpInstance(); switch ($this->config->getSystemValue('mail_smtpmode', 'smtp')) {
break;
case 'sendmail': case 'sendmail':
// FIXME: Move into the return statement but requires proper testing $transport = $this->getSendMailInstance();
// for SMTP and mail as well. Thus not really doable for a
// minor release.
$this->instance = \Swift_Mailer::newInstance($this->getSendMailInstance());
break; break;
case 'smtp':
default: default:
$this->instance = $this->getMailInstance(); $transport = $this->getSmtpInstance();
break; break;
} }
return $this->instance; return new \Swift_Mailer($transport);
} }
/** /**
@ -249,7 +246,7 @@ class Mailer implements IMailer {
* @return \Swift_SmtpTransport * @return \Swift_SmtpTransport
*/ */
protected function getSmtpInstance(): \Swift_SmtpTransport { protected function getSmtpInstance(): \Swift_SmtpTransport {
$transport = \Swift_SmtpTransport::newInstance(); $transport = new \Swift_SmtpTransport();
$transport->setTimeout($this->config->getSystemValue('mail_smtptimeout', 10)); $transport->setTimeout($this->config->getSystemValue('mail_smtptimeout', 10));
$transport->setHost($this->config->getSystemValue('mail_smtphost', '127.0.0.1')); $transport->setHost($this->config->getSystemValue('mail_smtphost', '127.0.0.1'));
$transport->setPort($this->config->getSystemValue('mail_smtpport', 25)); $transport->setPort($this->config->getSystemValue('mail_smtpport', 25));
@ -262,7 +259,7 @@ class Mailer implements IMailer {
if (!empty($smtpSecurity)) { if (!empty($smtpSecurity)) {
$transport->setEncryption($smtpSecurity); $transport->setEncryption($smtpSecurity);
} }
$transport->start();
return $transport; return $transport;
} }
@ -272,7 +269,7 @@ class Mailer implements IMailer {
* @return \Swift_SendmailTransport * @return \Swift_SendmailTransport
*/ */
protected function getSendMailInstance(): \Swift_SendmailTransport { protected function getSendMailInstance(): \Swift_SendmailTransport {
switch ($this->config->getSystemValue('mail_smtpmode', 'php')) { switch ($this->config->getSystemValue('mail_smtpmode', 'smtp')) {
case 'qmail': case 'qmail':
$binaryPath = '/var/qmail/bin/sendmail'; $binaryPath = '/var/qmail/bin/sendmail';
break; break;
@ -281,16 +278,6 @@ class Mailer implements IMailer {
break; break;
} }
return \Swift_SendmailTransport::newInstance($binaryPath . ' -bs'); return new \Swift_SendmailTransport($binaryPath . ' -bs');
} }
/**
* Returns the mail transport
*
* @return \Swift_MailTransport
*/
protected function getMailInstance(): \Swift_MailTransport {
return \Swift_MailTransport::newInstance();
}
} }

View File

@ -63,6 +63,10 @@ class Mail implements ISettings {
$parameters['mail_smtppassword'] = '********'; $parameters['mail_smtppassword'] = '********';
} }
if ($parameters['mail_smtpmode'] === '' || $parameters['mail_smtpmode'] === 'php') {
$parameters['mail_smtpmode'] = 'smtp';
}
return new TemplateResponse('settings', 'settings/admin/additional-mail', $parameters, ''); return new TemplateResponse('settings', 'settings/admin/additional-mail', $parameters, '');
} }

View File

@ -523,6 +523,10 @@ Raw output
return []; return [];
} }
protected function isPhpMailerUsed(): bool {
return $this->config->getSystemValue('mail_smtpmode', 'php') === 'php';
}
/** /**
* @return DataResponse * @return DataResponse
*/ */
@ -557,6 +561,8 @@ Raw output
'missingIndexes' => $this->hasMissingIndexes(), 'missingIndexes' => $this->hasMissingIndexes(),
'isSqliteUsed' => $this->isSqliteUsed(), 'isSqliteUsed' => $this->isSqliteUsed(),
'databaseConversionDocumentation' => $this->urlGenerator->linkToDocs('admin-db-conversion'), 'databaseConversionDocumentation' => $this->urlGenerator->linkToDocs('admin-db-conversion'),
'isPhpMailerUsed' => $this->isPhpMailerUsed(),
'mailSettingsDocumentation' => $this->urlGenerator->getAbsoluteURL('index.php/settings/admin')
] ]
); );
} }

View File

@ -38,7 +38,6 @@ $mail_smtpsecure = [
]; ];
$mail_smtpmode = [ $mail_smtpmode = [
['php', 'PHP'],
['smtp', 'SMTP'], ['smtp', 'SMTP'],
]; ];
if ($_['sendmail_is_available']) { if ($_['sendmail_is_available']) {

View File

@ -119,7 +119,22 @@ class CheckSetupControllerTest extends TestCase {
$this->lockingProvider, $this->lockingProvider,
$this->dateTimeFormatter, $this->dateTimeFormatter,
]) ])
->setMethods(['isReadOnlyConfig', 'hasValidTransactionIsolationLevel', 'hasFileinfoInstalled', 'hasWorkingFileLocking', 'getLastCronInfo', 'getSuggestedOverwriteCliURL', 'getOutdatedCaches', 'getCurlVersion', 'isPhpOutdated', 'isOpcacheProperlySetup', 'hasFreeTypeSupport', 'hasMissingIndexes', 'isSqliteUsed'])->getMock(); ->setMethods([
'isReadOnlyConfig',
'hasValidTransactionIsolationLevel',
'hasFileinfoInstalled',
'hasWorkingFileLocking',
'getLastCronInfo',
'getSuggestedOverwriteCliURL',
'getOutdatedCaches',
'getCurlVersion',
'isPhpOutdated',
'isOpcacheProperlySetup',
'hasFreeTypeSupport',
'hasMissingIndexes',
'isSqliteUsed',
'isPhpMailerUsed',
])->getMock();
} }
public function testIsInternetConnectionWorkingDisabledViaConfig() { public function testIsInternetConnectionWorkingDisabledViaConfig() {
@ -352,6 +367,10 @@ class CheckSetupControllerTest extends TestCase {
->method('linkToDocs') ->method('linkToDocs')
->with('admin-db-conversion') ->with('admin-db-conversion')
->willReturn('http://docs.example.org/server/go.php?to=admin-db-conversion'); ->willReturn('http://docs.example.org/server/go.php?to=admin-db-conversion');
$this->urlGenerator->expects($this->at(6))
->method('getAbsoluteURL')
->with('index.php/settings/admin')
->willReturn('https://server/index.php/settings/admin');
$this->checkSetupController $this->checkSetupController
->method('hasFreeTypeSupport') ->method('hasFreeTypeSupport')
->willReturn(false); ->willReturn(false);
@ -392,6 +411,10 @@ class CheckSetupControllerTest extends TestCase {
'relativeTime' => '2 hours ago', 'relativeTime' => '2 hours ago',
'backgroundJobsUrl' => 'https://example.org', 'backgroundJobsUrl' => 'https://example.org',
]); ]);
$this->checkSetupController
->expects($this->once())
->method('isPhpMailerUsed')
->willReturn(false);
$this->checker $this->checker
->expects($this->once()) ->expects($this->once())
->method('hasPassedCheck') ->method('hasPassedCheck')
@ -434,6 +457,8 @@ class CheckSetupControllerTest extends TestCase {
'isSqliteUsed' => false, 'isSqliteUsed' => false,
'databaseConversionDocumentation' => 'http://docs.example.org/server/go.php?to=admin-db-conversion', 'databaseConversionDocumentation' => 'http://docs.example.org/server/go.php?to=admin-db-conversion',
'missingIndexes' => [], 'missingIndexes' => [],
'isPhpMailerUsed' => false,
'mailSettingsDocumentation' => 'https://server/index.php/settings/admin',
] ]
); );
$this->assertEquals($expected, $this->checkSetupController->check()); $this->assertEquals($expected, $this->checkSetupController->check());

View File

@ -48,50 +48,41 @@ class MailerTest extends TestCase {
); );
} }
public function testGetMailInstance() {
$this->assertEquals(\Swift_MailTransport::newInstance(), self::invokePrivate($this->mailer, 'getMailinstance'));
}
public function testGetSendMailInstanceSendMail() { public function testGetSendMailInstanceSendMail() {
$this->config $this->config
->expects($this->once()) ->expects($this->once())
->method('getSystemValue') ->method('getSystemValue')
->with('mail_smtpmode', 'php') ->with('mail_smtpmode', 'smtp')
->will($this->returnValue('sendmail')); ->will($this->returnValue('sendmail'));
$this->assertEquals(\Swift_SendmailTransport::newInstance('/usr/sbin/sendmail -bs'), self::invokePrivate($this->mailer, 'getSendMailInstance')); $this->assertEquals(new \Swift_SendmailTransport('/usr/sbin/sendmail -bs'), self::invokePrivate($this->mailer, 'getSendMailInstance'));
} }
public function testGetSendMailInstanceSendMailQmail() { public function testGetSendMailInstanceSendMailQmail() {
$this->config $this->config
->expects($this->once()) ->expects($this->once())
->method('getSystemValue') ->method('getSystemValue')
->with('mail_smtpmode', 'php') ->with('mail_smtpmode', 'smtp')
->will($this->returnValue('qmail')); ->will($this->returnValue('qmail'));
$this->assertEquals(\Swift_SendmailTransport::newInstance('/var/qmail/bin/sendmail -bs'), self::invokePrivate($this->mailer, 'getSendMailInstance')); $this->assertEquals(new \Swift_SendmailTransport('/var/qmail/bin/sendmail -bs'), self::invokePrivate($this->mailer, 'getSendMailInstance'));
} }
public function testGetInstanceDefault() { public function testGetInstanceDefault() {
$this->assertInstanceOf('\Swift_MailTransport', self::invokePrivate($this->mailer, 'getInstance')); $mailer = self::invokePrivate($this->mailer, 'getInstance');
} $this->assertInstanceOf(\Swift_Mailer::class, $mailer);
$this->assertInstanceOf(\Swift_SmtpTransport::class, $mailer->getTransport());
public function testGetInstancePhp() {
$this->config
->expects($this->any())
->method('getSystemValue')
->will($this->returnValue('php'));
$this->assertInstanceOf('\Swift_MailTransport', self::invokePrivate($this->mailer, 'getInstance'));
} }
public function testGetInstanceSendmail() { public function testGetInstanceSendmail() {
$this->config $this->config
->expects($this->any())
->method('getSystemValue') ->method('getSystemValue')
->will($this->returnValue('sendmail')); ->with('mail_smtpmode', 'smtp')
->willReturn('sendmail');
$this->assertInstanceOf('\Swift_Mailer', self::invokePrivate($this->mailer, 'getInstance')); $mailer = self::invokePrivate($this->mailer, 'getInstance');
$this->assertInstanceOf(\Swift_Mailer::class, $mailer);
$this->assertInstanceOf(\Swift_SendmailTransport::class, $mailer->getTransport());
} }
public function testCreateMessage() { public function testCreateMessage() {

View File

@ -59,7 +59,7 @@ class MailTest extends TestCase {
->expects($this->at(2)) ->expects($this->at(2))
->method('getSystemValue') ->method('getSystemValue')
->with('mail_smtpmode', '') ->with('mail_smtpmode', '')
->willReturn('php'); ->willReturn('smtp');
$this->config $this->config
->expects($this->at(3)) ->expects($this->at(3))
->method('getSystemValue') ->method('getSystemValue')
@ -103,7 +103,7 @@ class MailTest extends TestCase {
'sendmail_is_available' => (bool) \OC_Helper::findBinaryPath('sendmail'), 'sendmail_is_available' => (bool) \OC_Helper::findBinaryPath('sendmail'),
'mail_domain' => 'mx.nextcloud.com', 'mail_domain' => 'mx.nextcloud.com',
'mail_from_address' => 'no-reply@nextcloud.com', 'mail_from_address' => 'no-reply@nextcloud.com',
'mail_smtpmode' => 'php', 'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => true, 'mail_smtpsecure' => true,
'mail_smtphost' => 'smtp.nextcloud.com', 'mail_smtphost' => 'smtp.nextcloud.com',
'mail_smtpport' => 25, 'mail_smtpport' => 25,