Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. mailx person@x.com
  2.  
  3. heirloom-mailx
  4.  
  5. heirloom-mailx
  6.  
  7. mailx -v -s "$EMAIL_SUBJECT"
  8. -S smtp-use-starttls
  9. -S ssl-verify=ignore
  10. -S smtp-auth=login
  11. -S smtp=smtp://smtp.gmail.com:587
  12. -S from="$FROM_EMAIL_ADDRESS($FRIENDLY_NAME)"
  13. -S smtp-auth-user=$FROM_EMAIL_ADDRESS
  14. -S smtp-auth-password=$EMAIL_ACCOUNT_PASSWORD
  15. -S ssl-verify=ignore
  16. -S nss-config-dir=~/.mozilla/firefox/xxxxxxxx.default/
  17. $TO_EMAIL_ADDRESS
  18.  
  19. mailx -v -s "$EMAIL_SUBJECT"
  20. -S smtp-use-starttls
  21. -S ssl-verify=ignore
  22. -S smtp-auth=login
  23. -S smtp=smtp://smtp.gmail.com:587
  24. -S from="$FROM_EMAIL_ADDRESS($FRIENDLY_NAME)"
  25. -S smtp-auth-user=$FROM_EMAIL_ADDRESS
  26. -S smtp-auth-password=$EMAIL_ACCOUNT_PASSWORD
  27. -S ssl-verify=ignore
  28. -S nss-config-dir=~/.mozilla/firefox/xxxxxxxx.default/
  29. $TO_EMAIL_ADDRESS
  30.  
  31. mailx -v -s "$EMAIL_SUBJECT"
  32. -S smtp-use-starttls
  33. -S ssl-verify=ignore
  34. -S smtp-auth=login
  35. -S smtp=smtp://smtp.gmail.com:587
  36. -S from="$FROM_EMAIL_ADDRESS($FRIENDLY_NAME)"
  37. -S smtp-auth-user=$FROM_EMAIL_ADDRESS
  38. -S smtp-auth-password=$EMAIL_ACCOUNT_PASSWORD
  39. -S ssl-verify=ignore
  40. -S nss-config-dir=~/.mozilla/firefox/xxxxxxxx.default/
  41. $TO_EMAIL_ADDRESS
  42.  
  43. mailx -v -s "$EMAIL_SUBJECT"
  44. -S smtp=smtp://smtp.server.com
  45. -S from="$FROM_EMAIL_ADDRESS($FRIENDLY_NAME)"
  46. $TO_EMAIL_ADDRESS
  47.  
  48. Summary : Extremely simple MTA to get mail off the system to a Mailhub
  49. URL : http://packages.debian.org/stable/mail/ssmtp
  50. License : GPLv2+
  51. Description : A secure, effective and simple way of getting mail off a system to your mail
  52. : hub. It contains no suid-binaries or other dangerous things - no mail spool
  53. : to poke around in, and no daemons running in the background. Mail is simply
  54. : forwarded to the configured mailhost. Extremely easy configuration.
  55.  
  56. smtp Normally, mailx invokes sendmail(8) directly to transfer
  57. messages. If the smtp variable is set, a SMTP connection
  58. to the server specified by the value of this variable is
  59. used instead.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement