The issue exists when you use client domain name as smtp server not the hostname of your serverNot sure what to say about that. No issues here with Exim on CL6 ELS.
Sending of the message failed.
Unable to communicate securely with peer: requested domain name does not match the server’s certificate.
The configuration related to mail.domain.pl must be corrected.
Facing the same problem here.The issue exists when you use client domain name as smtp server not the hostname of your server
And I'm saying that I and my clients aren't having any issues using mail.clientdomain1.com, mail.clientdomain2.com or primary.host.name . Exim has all the matching cert info to allow them to connect without any warnings.The issue exists when you use client domain name as smtp server not the hostname of your server
Did you read through this whole thread?Facing the same problem here.
The security certificate for this server is invalid or expired. Therefore, connection to this server is not secure. Do you wish to continue anyway?
YES YES YES!!Seems it was a permission issue on some certs for us fixed with :
find /var/cpanel/ssl/domain_tls/* -type d -not -perm 755 -exec chmod -v 755 {} \;
Yes!!! That did it ! Run permission change and it solved the problem!Seems it was a permission issue on some certs for us fixed with :
find /var/cpanel/ssl/domain_tls/* -type d -not -perm 755 -exec chmod -v 755 {} \;
find /var/cpanel/ssl/domain_tls/ -mindepth 1 -maxdepth 1 -name .pending_delete -prune -o -type d -not -perm 755 -exec chmod -v 755 {} \;
PLEASE tell me you werent sitting on this fix and holding it back the entire day!!!While the permissions command does work in some specific situations, I would excercise caution in copy/pasting commands. Specifically, that command is also changing the permissions of the pending_delete directory, which is not ideal. Something like this would be more effective:
but it's important to note we're still researching all these implications on our side before we provide an official update.Code:find /var/cpanel/ssl/domain_tls/ -mindepth 1 -maxdepth 1 -name .pending_delete -prune -o -type d -not -perm 755 -exec chmod -v 755 {} \;
find /var/cpanel/ssl/domain_tls/* -type d -not -perm 644 -exec chmod -v 644 {} \;