Skip to content

Tag: ssl

Installing a commercial SSL certificate in Zimbra

I installed a commercial (free) SSL certificate from Startcom SSL in Zimbra. I basically followed this, except the java keytool thing. I don't know why that is necessary... I did this on Zimbra 6.0.10_GA_2692.UBUNTU8_64 UBUNTU8_64 FOSS edition. Read More »

Testing an OpenSSL connection

Simple command to test an SSL connection: openssl s_client -connect meel.halfgaar.net:993 -ssl3 Read More »

Enabling authentication and SSL for Postfix on Debian

I used this document as main source. This blogpost is also useful. Read More »

Changing an apache virtual host to ssl

To change a virtual host in apache to ssl: #Redirect all normal traffic to the https site. RewriteEngine on RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [L,R] Read More »

Generating key and certificate for courier-imap

To create a self-signed certificate for courier-imap: openssl req -new -x509 -days 3650 -nodes -out imapd.pem -keyout imapd.pem Read More »

Generating a self-signed SSL certificate

This article explains nicely how to make a self-signed SSL certificate, for Apache for instance: Read More »

Show fields in a SSL certificate with openssl

To use OpenSSL to get the certficate information (source): Read More »