Suppose that plato.example.com is my mail server.
I have the following files:
- plato.example.com.key, created on my linode (along with plato.example.com.csr which is submitted to Namecheap when purchasing Comodo PositiveSSL)
- Comodo gives me back these files: AddTrustExternalCARoot.crt, PositiveSSLCA2.crt, and plato_example_com.crt
What is the proper way of setting up Postfix and Dovecot using all these files?
---
I am a bit confused because on
Nginx (if plato.example.com is going to be a web site), I have to
cat three files together:
Code:
cat plato_example_com.crt PositiveSSLCA2.crt AddTrustExternalCARoot.crt > plato.example.com.crt
Then I set it up like this:
Code:
ssl_certificate /etc/whatever/plato.example.com.crt;
ssl_certificate_key /etc/whatever/plato.example.com.key;
Do I have to cat files together in a similar way for Postfix and Dovecot?