Lack of interest Allow self-signed SMTP/TLS certificates with your chosen email server.

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

glitch77

New member
Would it be possible to add a tickbox to later Xen versions that allows you to use self-signed SMTP/TLS certificates with your chosen email server? ProtonMail Bridge (https://protonmail.com/bridge/) and requires this to function, but I'm sure many other relays would benefit. The code is simple, just need to add some options to ...\swiftmailer\lib\classes\Swift\Transport\StreamBuffer.php;

Change: $options = array();

To: $options = array('ssl' => array('allow_self_signed' => true, 'verify_peer' => false));

It would also need to be added to the IMAP Zend mailer as well.
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
Hmm, not valdating peers is generally frowned upon and thus strongly not recommended.
I am not familiar with ProntonMail, but can't you just configure it to use an official certificate like LetsEncrypt?
This would solve the issue.
 
Top Bottom