Hey guys,
Someone have an tutorial teaching how to get SSL DHE-RSA-AES256-SHA working for Dovecot and Postfix?
I did the Certificate key using:
Then the Certificate Sign Request:
And then Signed:
Testing with:
The connection start and nothing happen, no log saying about errors, sending:
or
Make nothing, and cant stop using
or
Only option is restart the server.
My goal is have both Dovecot and Postfix with the best encrypted self-signed certificate under the RFC 6460 rules, and hardening guides about use the strongest and compatible encryption.
Thanks in advice
Someone have an tutorial teaching how to get SSL DHE-RSA-AES256-SHA working for Dovecot and Postfix?
I did the Certificate key using:
openssl ecparam -genkey -name secp384r -out usr/local/etc/ssl/private/mail.mydomain.com.key
Then the Certificate Sign Request:
openssl req -new -key /usr/local/etc/ssl/private/mail.mydomain.com.key -out /usr/local/etc/local/etc/ssl/private/mail.mydomain.com.csr
And then Signed:
"openssl x509 -req -days 365 -in /usr/local/etc/ssl/private/mail.mydomain.com.csr -signkey /usr/local/etc/ssl/private/mail.mydomain.com.key -out /usr/local/etc/ssl/certs/mail.mydomain.com.crt"
Testing with:
openssl s_client -connect IP.IP.IP.IP:995 -starttls smtp
The connection start and nothing happen, no log saying about errors, sending:
EHLO mydomain.com
or
EHLO mail.mydomain.com
Make nothing, and cant stop using
Ctrl C
or
Ctrl X
Only option is restart the server.
My goal is have both Dovecot and Postfix with the best encrypted self-signed certificate under the RFC 6460 rules, and hardening guides about use the strongest and compatible encryption.
Thanks in advice