Advertisement
Guest User

Untitled

a guest
Nov 25th, 2016
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. [root@samba1 ~]# openssl s_client
  2. -connect mail.example.com:587
  3. -starttls smtp
  4. -CAfile /etc/pki/tls/mail.example.com.pem
  5.  
  6. Nov 25 19:23:05 mail postfix/smtpd[5659]: initializing the server-side TLS engine
  7. Nov 25 19:23:05 mail postfix/smtpd[5659]: connect from samba1.example.com[192.168.0.12]
  8. Nov 25 19:28:05 mail postfix/smtpd[5659]: timeout after UNKNOWN from samba1.example.com[192.168.0.12]
  9.  
  10. account default {
  11. set smtp=smtps://mail.example.com:587
  12.  
  13. #Authentication
  14. set smtp-auth=login
  15. set smtp-auth-user=my.email@example.com
  16. set smtp-auth-password="my_password"
  17.  
  18. #Encryption
  19. set smtp-use-starttls
  20. set nss-config-dir=/etc/pki/nssdb
  21. }
  22.  
  23. [root@samba1 ~]# certutil -L -d /etc/pki/nssdb
  24.  
  25. Certificate Nickname Trust Attributes
  26. SSL,S/MIME,JAR/XPI
  27.  
  28. mail.example.com.crt CT,,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement