Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 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=postmaster
  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=authsmtp.guardian.sm
  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=
  25.  
  26. # The full hostname
  27. #Hostname=localhost
  28.  
  29. # Username/Password
  30. AuthUser=******
  31. AuthPass=******
  32.  
  33. # Set this to never rewrite the "From:" line (unless not given) and to
  34. # use that address in the "from line" of the envelope.
  35. #FromLineOverride=YES
  36.  
  37. # Use SSL/TLS to send secure messages to server.
  38. #UseTLS=YES
  39. #IMPORTANT: The following line is mandatory for TLS authentication
  40. TLS_CA_File=/etc/pki/tls/certs/ca-bundle.crt
  41.  
  42. # Use SSL/TLS certificate to authenticate against smtp host.
  43. #UseTLSCert=YES
  44.  
  45. # Use this RSA certificate.
  46. #TLSCert=/etc/pki/tls/private/ssmtp.pem
  47.  
  48. # Get enhanced (*really* enhanced) debugging information in the logs
  49. # If you want to have debugging of the config file parsing, move this option
  50. # to the top of the config file and uncomment
  51. #Debug=YES
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement