Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. echo "This is the message body and contains the message" | mailx -v -r "name.surname@gmail.com" -s "This is the subject" -S smtp="smtp.mail.com:587" -S smtp-use-starttls -S smtp-auth=login -S smtp-auth-user="name.surname@mail.com" -S smtp-auth-password="*****" -S ssl-verify=ignore -S nss-config-dir="/etc/pki/nssdb" name.surname@gmail.com
  2.  
  3. >>>Resolving host smtp.mail.com . . . done.
  4. Connecting to 74.208.5.15:587 . . . connected.
  5. 220 gmx.com (mrgmxus002) Nemesis ESMTP Service ready
  6. >>> EHLO ip-172-29-1-106.eu-west-1.compute.internal
  7. 250-gmx.com Hello ip-172-29-1-106.eu-west-1.compute.internal [52.213.120.236]
  8. 250-AUTH LOGIN PLAIN
  9. 250-SIZE 69920427
  10. 250 STARTTLS
  11. >>> STARTTLS
  12. 220 OK
  13. Error in certificate: Peer's certificate issuer has been marked as not trusted by the.
  14. Comparing DNS name: "smtp.mail.com"
  15. SSL parameters: cipher=missing, keysize=256, secretkeysize=256,
  16. issuer=CN=thawte SSL CA - G2,O="thawte, Inc.",C=US
  17. subject=CN=smtp.mail.com,O=1&1 Mail & Media Inc.,L=Chesterbrook,ST=Pennsylvania,C=US
  18. >>> EHLO ip-172-29-1-106.eu-west-1.compute.internal
  19. 250-gmx.com Hello ip-172-29-1-106.eu-west-1.compute.internal [52.213.120.236]
  20. 250-AUTH LOGIN PLAIN
  21. 250 SIZE 69920427
  22. >>> AUTH LOGIN
  23. 334 VXNlcm5hbWU6
  24. >>> ZG9uZy5jaGVuQG1haWwuY29t
  25. 334 UGFzc3dvcmQ6
  26. >>> Y2R+MTExMTEx
  27. 235 Authentication succeeded
  28. >>> MAIL FROM:<chendong.jy@gmail.com>
  29. 550-Requested action not taken: mailbox unavailable
  30. smtp-server: 550-Requested action not taken: mailbox unavailable
  31. 550 Sender address is not allowed.
  32. smtp-server: 550 Sender address is not allowed.
  33. "/root/dead.letter" 11/366
  34. . . . message not sent.250-SIZE 69920427
  35. 250 STARTTLS
  36. >>> STARTTLS
  37. 220 OK
  38. Error in certificate: Peer's certificate issuer has been marked as not trusted by the.
  39. Comparing DNS name: "smtp.mail.com"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement