How to use self signed certs for SSL/TLS IMAP and SMTP

XenForo How to use self signed certs for SSL/TLS IMAP and SMTP

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
XenForo submitted a new resource:

How to use self signed certs for SSL/TLS IMAP and SMTP - How to disable certificate/peer verification for IMAP and SMTP so you can use a self-signed

If you have an SMTP or IMAP server that has a self signed certifcate, you will need to make 2 file edits to prevent a connection failure.

src/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php

paste this after
PHP:
$options = [];
PHP:
$options['ssl']['verify_peer'] = FALSE;
$options['ssl']['verify_peer_name'] = FALSE;
src/vendor/laminas/laminas-mail/src/Protocol/Imap.php

replace this
PHP:
$this->socket = fsockopen($host...

Read more about this resource...
 
Back
Top Bottom