1
2
3
4
|
$ mkdir ./.certs
$ echo -n | openssl s_client -connect smtp.163.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/163.mail.crt
$ certutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/opt/163.mail.crt
$ certutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/opt/163.mail.crt
|