6 lines
209 B
Bash
6 lines
209 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# fingerprint certificat gmail (pour fetchmail)
|
||
|
|
||
|
openssl s_client -connect imap.gmail.com:993 -showcerts < /dev/null | openssl x509 -fingerprint -md5 -text | grep Fingerprint | awk -F= '{print $2}'
|