Differences between revisions 2 and 3
Revision 2 as of 2016-01-23 20:14:07
Size: 773
Editor: Kurgan
Comment:
Revision 3 as of 2017-04-13 13:26:44
Size: 913
Editor: Kurgan
Comment:
Deletions are marked like this. Additions are marked like this.
Line 36: Line 36:



=== Cambiare la password a una chiave privata ====

{{{
openssl rsa -des3 -in keyfile.key -out keyfile-with-new-password.key
}}}

OpenSSL

Verifica se SSL (e/o TLS) funziona:

  • smtp + TLS (porta 25)
    • openssl s_client  -CApath /etc/ssl/certs -connect mail.qualcosa.it:25 -starttls smtp
  • imap + TLS (porta 143)
    • openssl s_client  -CApath /etc/ssl/certs -connect mail.qualcosa.it:143 -starttls imap
  • pop3 + TLS (porta 110)
    • openssl s_client  -CApath /etc/ssl/certs -connect mail.qualcosa.it:110 -starttls pop3
  • smtps (porta 465)
    • openssl s_client -CApath /etc/ssl/certs -connect mail.qualcosa.it:smtps
  • imaps (porta 993)
    • openssl s_client -CApath /etc/ssl/certs -connect mail.qualcosa.it:imaps
  • pop3s (porta 995)
    • openssl s_client -CApath /etc/ssl/certs -connect mail.qualcosa.it:pop3s

=== Cambiare la password a una chiave privata ====

openssl rsa -des3 -in keyfile.key -out keyfile-with-new-password.key

OpenSSL (last edited 2023-08-31 11:30:29 by Kurgan)