Overview
You are not able to send emails from your Jive instance. When you try to send a test email from the Admin Console, you get an error:
Sending the message failed. Please verify that your host and port settings are correct. (Message: Can’t send commands to SMTP host)
Logs have the below errors:
Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
In SMTP settings, you have set
-
- Use SSL - True, OR
- Use TLS - True
This article describes the process to resolve an issue that occurs when emails from Jive are no longer being received after a recent email server security certificate update.
Prerequisites
This applies to On-Premise customers, but these steps may be helpful for investigations into hosted customers who are not using Jive provided email servers
Solution
- Use OpenSSL to find the certificate chain on the email server:
openssl s_client -starttls smtp -crlf -connect <email server name from the last step>:<email server port>
Note the names of all of the certificates in the chain. -
Check to see if the certificates are in the Jive Keystore:
- As the jive user, browse to
~/java/jre/bin
. - Use:
./keytool -list -v -keystore /usr/local/jive/java/jre/lib/security/cacerts -storepass changeit
- As the jive user, browse to
- If you search the output and do not find the certificates from the previous step, they need to be imported into the Jive Keystore.
-
Install the new certificates into the Keystore:
- Use:
sudo su - jive
- Copy the .pem file(s) for each certificate that was not found in the webapp nodes; in this example, we are placing them in the
/tmp
folder. The certificate provider should have the .pem files available. - Browse to
~/java/jre/bin
. - Use:
./keytool -storetype BCFKS -keystore /usr/local/jive/java/jre/lib/security/cacerts -storepass changeit -import -alias <choose a cert alias> -file /tmp/<certificate_name>.pem
- Use:
- Restart the Web Node.
Testing
Once installed on the webapp nodes, test the email connection:
- Log in to the Admin console
- Navigate to System > Settings > Email section to verify that the connection is now working fine.
Priyanka Bhotika
Comments