Guest User

Untitled

a guest
Mar 19th, 2018
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. ssmtp.conf
  2. ----------
  3.  
  4. # Config file for sSMTP sendmail
  5. #
  6. # The person who gets all mail for userids < 1000
  7. # Make this empty to disable rewriting.
  8. root=example.pi@gmail.com
  9.  
  10. # The place where the mail goes. The actual machine name is required no
  11. # MX records are consulted. Commonly mailhosts are named mail.domain.com
  12. mailhub=smtp.gmail.com:587
  13.  
  14. AuthUser=example.pi@gmail.com
  15. AuthPass=example
  16.  
  17. UseTLS=YES
  18. UseSTARTTLS=YES
  19.  
  20. # Where will the mail seem to come from?
  21. rewriteDomain=gmail.com
  22.  
  23. # The full hostname
  24. hostname=raspberry.pi
  25.  
  26. # Are users allowed to set their own From: address?
  27. # YES - Allow the user to specify their own From: address
  28. # NO - Use the system generated From: address
  29. FromLineOverride=YES
  30.  
  31.  
  32. revaliases
  33. ----------
  34.  
  35. # sSMTP aliases
  36. #
  37. # Format: local_account:outgoing_address:mailhub
  38. #
  39. # Example: root:your_login@your.domain:mailhub.your.domain[:port]
  40. # where [:port] is an optional port number that defaults to 25.
  41. root:example.pi@gmail.com:smtp.gmail.com:587
Add Comment
Please, Sign In to add comment