IMAP Server  Print this Article

To install SSL on IMAP server you need single .pem file - it includes Private Key and SSL certificate. Usually this file is called: imapd.pem.

To create it, follow this instruction:

  • open SSL certificate in text editor,
  • open private key in text editor (it was generated with the CSR file),
  • copy certificate (with the dashed lines at the beginning and end) paste it underneath the private key data,
  • and save file as imapd.pem

The imapd.pem file should like like this:
-----BEGIN RSA PRIVATE KEY-----
(your private key)
-----END RSA PRIVATE KEY-----
-----BEGIN CERTIFICATE-----
(your certificate)
-----END CERTIFICATE-----

Configuration of the server:
1. To view the fingerprint, use the command:

openssl x509 -noout -fingerprint -in ca-certificate-file

2. Make sure the CA file is in certs/ and run the command:

openssl x509 -noout -hash -in ca-certificate-file

3. And the following one:

openssl x509 -hash -noout -in my_ca.crt

4. To test your installation:

openssl verify -CApath certs server-certificate-file

5. If all went well you should get the following response:

your-herald2-server.pem: OK

Was this answer helpful?

Related Articles

SSL Installations
SSL installation depends on the type of server you are securing. Please select below the server...
Apache (with mod_ssl)
Installing SSL certificate on Apache with mod_ssl To install certificate you need 2...
Apple Mac OS X Server
Log in to admin server as a root. Create a folder /etc/httpd/ssl.crt/ (if it does not exist)....
Barracuda VPN server
Installing SSL certificate on Barracuda VPN serverImport CertificatesFrom the appliance web...
Cisco ACS Server
Note: If the domain/site certificate is created using CA certificate, you need to repeat steps...