Installing an SSL in Courier IMAP
Print this Article
Comment on this Article
Last Updated:
October 27, 2009 11:16 AM
After your certificate request is approved, you can download your SSL and intermediate certificate from within the SSL application. For more information, see Downloading Your SSL Certificate. Both of these files must be installed on your Web server.
To Install Your SSL and Intermediate Certificate
-
Gather your certificate files.
Log in to your SSL Manager and download your primary and intermediate certificates. You also need your private key (your_domain.key), which was generated by your server along with your CSR. -
Create a combined .pem certificate file.
Using a text editor such as Notepad, paste in the contents of the primary certificate and your private key, including theBEGINandENDtags. For example:-----BEGIN CERTIFICATE-----Save the file as
(Your primary certificate: your_domain.crt)
-----END CERTIFICATE-----
-----BEGIN RSA PRIVATE KEY-----
(Your private key: your_domain.key)
-----END RSA PRIVATE KEY-----gdcertpack.pem -
Save the Go Daddy intermediate certificate.
Copy the Go Daddy intermediate certificate into a text editor and save the file asgdca.txt -
Secure Courier IMAP.
Locate and open imapd-ssl file (usually found in /usr/lib/courier-imap/etc/). Add the following directives and file locations:TLS_CERTFILE=/some/path/gdcertpack.pemTLS_CERTFILE=/some/path/gdca.txt
TLS_PROTOCOL=SSL3
-
Secure POP3.
Locate and open pop3d-ssl file (typically found in /usr/lib/courier-imap/etc/). Add the following directives and file locations:TLS_CERTFILE=/some/path/gdcertpack.pemTLS_CERTFILE=/some/path/gdca.txt
-
Verify your file permissions.
Ensuregdcertpack.pemis readable by root only. - Restart your Courier IMAP server.