Differences between revisions 3 and 4
Revision 3 as of 2017-04-13 13:26:44
Size: 913
Editor: Kurgan
Comment:
Revision 4 as of 2017-04-13 13:27:25
Size: 912
Editor: Kurgan
Comment:
Deletions are marked like this. Additions are marked like this.
Line 39: Line 39:
=== Cambiare la password a una chiave privata ==== === Cambiare la password a una chiave privata ===

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)