Advertisement
Guest User

Untitled

a guest
Sep 18th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # The user that gets all the mails (UID < 1000, usually the admin)
  2. root=username@gmail.com
  3.  
  4. # The mail server (where the mail is sent to), both port 465 or 587 should be acceptable
  5. # See also https://support.google.com/mail/answer/78799
  6. mailhub=smtp.gmail.com:587
  7.  
  8. # The address where the mail appears to come from for user authentication.
  9. rewriteDomain=gmail.com
  10.  
  11. # The full hostname. Must be correctly formed, fully qualified domain name or GMail will reject connection.
  12. hostname=yourlocalhost.yourlocaldomain.tld
  13.  
  14. # Use SSL/TLS before starting negotiation
  15. UseTLS=Yes
  16. UseSTARTTLS=Yes
  17.  
  18. # Username/Password
  19. AuthUser=username
  20. AuthPass=password
  21. AuthMethod=LOGIN
  22.  
  23. # Email 'From header's can override the default domain?
  24. FromLineOverride=yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement