Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. # The SMTP server hostname, e.g. "smtp.gmail.com"
  2. hostname=meinedomain.de
  3.  
  4. # the SMTP port to use (optional, defaults to 25 (resp. 587 for /SSL))
  5. port=25
  6.  
  7. # the username and password if the SMTP server requires authentication
  8. username=name@meinedomain.de
  9. password=Meinpasswort
  10.  
  11. # The email address to use for sending mails
  12. from=name@meinedomain.de
  13.  
  14. # set to "true", if STARTTLS is enabled (not required) for the connection
  15. # (optional, defaults to false)
  16. tls=false
  17.  
  18. # set to "true", if SSL negotiation should occur on connection
  19. # do not use both tls=true and ssl=true
  20. # (optional, defaults to false)
  21. ssl=false
  22.  
  23. # set to "true", if POP before SMTP (another authentication mechanism)
  24. # should be enabled. Username and Password are taken from the above
  25. # configuration (optional, default to false)
  26. popbeforesmtp=false
  27.  
  28. # Character set used to encode message body
  29. # (optional, if not provided platform default is used)
  30. #charset=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement