Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. #
  2. # /etc/ssmtp.conf -- a config file for sSMTP sendmail.
  3. #
  4. # See the ssmtp.conf(5) man page for a more verbose explanation of the
  5. # available options.
  6. #
  7. # The person who gets all mail for userids < 1000
  8. # Make this empty to disable rewriting.
  9. root=xorvestor@gmail.com
  10.  
  11. # The place where the mail goes. The actual machine name is required
  12. # no MX records are consulted. Commonly mailhosts are named mail.domain.com
  13. # The example will fit if you are in domain.com and your mailhub is so named.
  14. mailhub=smtp.gmail.com:587
  15.  
  16. # Example for SMTP port number 2525
  17. #mailhub=mail.your.domain:2525
  18. # Example for SMTP port number 25 (Standard/RFC)
  19. # mailhub=mail.your.domain
  20. # Example for SSL encrypted connection
  21. # mailhub=mail.your.domain:465
  22.  
  23. # Where will the mail seem to come from?
  24. RewriteDomain=gmail.com
  25.  
  26. # The full hostname
  27. Hostname=localhost
  28.  
  29. # Set this to never rewrite the "From:" line (unless not given) and to
  30. # use that address in the "from line" of the envelope.
  31. FromLineOverride=YES
  32.  
  33. # Use SSL/TLS to send secure messages to server.
  34. UseTLS=YES
  35.  
  36. AuthUser=xorvestor
  37. AuthPass=Pendalbf777Gendalf
  38. AuthMethod=LOGIN
  39.  
  40. #IMPORTANT: The following line is mandatory for TLS authentication
  41. TLS_CA_File=/etc/pki/tls/certs/ca-bundle.crt
  42.  
  43. # Use SSL/TLS certificate to authenticate against smtp host.
  44. #UseTLSCert=YES
  45.  
  46. # Use this RSA certificate.
  47. #TLSCert=/etc/pki/tls/private/ssmtp.pem
  48.  
  49. # Get enhanced (*really* enhanced) debugging information in the logs
  50. # If you want to have debugging of the config file parsing, move this option
  51. # to the top of the config file and uncomment
  52. #Debug=YES
  53.  
  54. UseSTARTTLS=YES
  55. STARTTLS=YES
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement