We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hy..
I'm using vimbadmin, which in turn uses OSS-Framework.
There is a little problem with your mailer class, it doesn't allow setting the port or tls for sending mail, take a look on zend's "Securing SMTP Transport" documentation (http://framework.zend.com/manual/1.12/en/zend.mail.smtp-secure.html)
I would suggest changing the file https://github.com/opensolutions/OSS-Framework/blob/master/src/OSS/Resource/Mailer.php to something like this:
if( isset( $options['auth'] ) ) { $config = array( 'auth' => $options['auth'], 'username' => $options['username'], 'password' => $options['password'] ); if( isset( $options['ssl'] ) ) $config['ssl'] = $options['ssl']; if( isset( $options['port'] ) ) $config['port'] = $options['port']; } else $config = array();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hy..
I'm using vimbadmin, which in turn uses OSS-Framework.
There is a little problem with your mailer class, it doesn't allow setting the port or tls for sending mail, take a look on zend's "Securing SMTP Transport" documentation (http://framework.zend.com/manual/1.12/en/zend.mail.smtp-secure.html)
I would suggest changing the file https://github.com/opensolutions/OSS-Framework/blob/master/src/OSS/Resource/Mailer.php to something like this:
The text was updated successfully, but these errors were encountered: