Hi everyone,
I'm currently trying to install a certificate in a Zimbra installation. The certificate is already working with the Apache2 webserver. The CRS was created with the system's openssl installation.
When doing
Code:
/opt/zimbra/bin/zmcertmgr verifycrt comm private.key public.crt intermediate.crt
I get the following error:
Code:
error 2 at 2 depth lookup:unable to get issuer certificate
That error is produced by the following call:
Code:
/opt/zimbra/openssl/bin/openssl verify -purpose sslserver -CAfile intermediate.crt public.crt
But when doing the same call with the system's openssl installation:
Code:
/usr/bin/openssl verify -purpose sslserver -CAfile intermediate.crt public.crt
I get the following output:
The only difference I could find between the two openssl instances was:
Code:
/usr/bin/openssl version
OpenSSL 0.9.8k 25 Mar 2009
/opt/zimbra/openssl/bin/openssl version
OpenSSL 0.9.8o 01 Jun 2010
So, eventually the question is: how to solve the problem?