diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-19 21:55:02 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-03-16 12:47:06 +0100 |
commit | e32f1582c76252ae80802c0851a9583504131dff (patch) | |
tree | 247976a9bd3dd9f9549b205ba58a0c0c2e721cc9 /lib/private/mail | |
parent | dfd70337d6db5e6e15f6763d5e8762f189e9fd71 (diff) | |
download | nextcloud-server-e32f1582c76252ae80802c0851a9583504131dff.tar.gz nextcloud-server-e32f1582c76252ae80802c0851a9583504131dff.zip |
Show more detailed error message
Diffstat (limited to 'lib/private/mail')
-rw-r--r-- | lib/private/mail/mailer.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/mail/mailer.php b/lib/private/mail/mailer.php index 92e6b91ce1c..83dd050edbc 100644 --- a/lib/private/mail/mailer.php +++ b/lib/private/mail/mailer.php @@ -149,6 +149,7 @@ class Mailer implements IMailer { if (!empty($smtpSecurity)) { $transport->setEncryption($smtpSecurity); } + $transport->start(); return $transport; } |