Merge pull request #19657 from owncloud/setup-transport

Setup sendmail transport
This commit is contained in:
Thomas Müller 2015-10-12 13:44:26 +02:00
commit 0036c637fc
2 changed files with 5 additions and 2 deletions

View File

@ -157,7 +157,10 @@ class Mailer implements IMailer {
$this->instance = $this->getSMTPInstance(); $this->instance = $this->getSMTPInstance();
break; break;
case 'sendmail': case 'sendmail':
$this->instance = $this->getSendMailInstance(); // FIXME: Move into the return statement but requires proper testing
// for SMTP and mail as well. Thus not really doable for a
// minor release.
$this->instance = \Swift_Mailer::newInstance($this->getSendMailInstance());
break; break;
default: default:
$this->instance = $this->getMailInstance(); $this->instance = $this->getMailInstance();

View File

@ -77,7 +77,7 @@ class MailerTest extends TestCase {
->method('getSystemValue') ->method('getSystemValue')
->will($this->returnValue('sendmail')); ->will($this->returnValue('sendmail'));
$this->assertInstanceOf('\Swift_SendmailTransport', self::invokePrivate($this->mailer, 'getInstance')); $this->assertInstanceOf('\Swift_Mailer', self::invokePrivate($this->mailer, 'getInstance'));
} }
public function testCreateMessage() { public function testCreateMessage() {