Hello to all,
i have a site using joomla 3.7.4 on my server and i have set all stuffs for SMTP email. I have protected both mail, server and sites with let's encrypt certificate. All is ok and fully working.
I have only important bug which i want to fix: Now i'm using php version 7.0.21 but when i try to send an email through site i have smtp error. The only way to fix is to add this code to the beginning of the function useSmtp() in joomla:
I have found this workaround here:Gmail as SMTP server in Joomla 3.6.0
So at every upgrade of joomla i have to add this piece of code to make email system working on site.
Any idea for a definite fix server side?
Thanks in advance.
i have a site using joomla 3.7.4 on my server and i have set all stuffs for SMTP email. I have protected both mail, server and sites with let's encrypt certificate. All is ok and fully working.
I have only important bug which i want to fix: Now i'm using php version 7.0.21 but when i try to send an email through site i have smtp error. The only way to fix is to add this code to the beginning of the function useSmtp() in joomla:
PHP:
// 20160729 workaround for certificate verification failure - ref. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
$this->SMTPOptions = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
// 20160729 end
I have found this workaround here:Gmail as SMTP server in Joomla 3.6.0
So at every upgrade of joomla i have to add this piece of code to make email system working on site.
Any idea for a definite fix server side?
Thanks in advance.