The connection to LDAP cannot be established using SecureLDAP or connection to SMTP Host cannot be established using secure connection
Usually a self-signed SSL certificate is installed on LDAP or SMTP server, which cannot be trusted by Java
The simplest way to install certificates is to download and install a program called Keystore Explorer to import your certificate into the keystore. The default password for the keystore is "changeit"
Import the LDAP or SMTP SSL certificate to Java keystore of Cryptshare Installation Linux Server
cd /opt/cryptshare-3/jre/bin/
chmod +x keytool
./keytool -import -trustcacerts -keystore ../lib/security/cacerts -alias <sitename> -file <SSL Certificate>
where <alias> is the name of LDAP or SMTP server and <SSL Certificate> is the certificate inclusive the path, e.g. /root/LDAP-SSL-certificate.crt or /root/SMTP-SSL-certificate.crt The default password for the JAVA certificate storage is changeit
systemctl restart cryptshare (use rccryptshare restart up to and including v.7.1)
Windows Server
cd <Cryptshare installation folder>\jre\bin
keytool.exe -import -trustcacerts -keystore ..\lib\security\cacerts -alias <sitename> -file <SSL Certificate>
where <alias> is the name of LDAP server and <SSL Certificate> is the certificate inclusive the path, e.g. <User Desktop>\LDAP-SSL-certificate.crt or <User Desktop>\SMTP-SSL-certificate.crt The default password for the JAVA certificate storage is changeit
Now the SecureLDAP connection should work fine.