• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Certificate, php > 5.6 and SMTP problem

Simpleweb

New Pleskian
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:

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.
 
I would like to add that this is not a Joomla related issue. We have seen the same on a custom PHP SMTP auth script on two non-Plesk servers and where not able to solve it yet. We believe that a wrong cipher suite or a wrong certificate is used for the connection by the SMTP server, but again, the final solution has not been discovered yet.
 
Back
Top