ruebenmira

sample sendmail.ini file

Mar 20th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. ; you must change mail.mydomain.com to your smtp server,
  2. ; or to IIS's "pickup" directory. (generally C:\Inetpub\mailroot\Pickup)
  3. ; emails delivered via IIS's pickup directory cause sendmail to
  4. ; run quicker, but you won't get error messages back to the calling
  5. ; application.
  6.  
  7. smtp_server=smtp.gmail.com
  8.  
  9. ; smtp port (normally 25)
  10.  
  11. smtp_port=465
  12.  
  13. ; SMTPS (SSL) support
  14. ; auto = use SSL for port 465, otherwise try to use TLS
  15. ; ssl = alway use SSL
  16. ; tls = always use TLS
  17. ; none = never try to use SSL
  18.  
  19. smtp_ssl=auto
  20.  
  21. ; the default domain for this server will be read from the registry
  22. ; this will be appended to email addresses when one isn't provided
  23. ; if you want to override the value in the registry, uncomment and modify
  24.  
  25. ;default_domain=mydomain.com
  26.  
  27. ; log smtp errors to error.log (defaults to same directory as sendmail.exe)
  28. ; uncomment to enable logging
  29.  
  30. error_logfile=error.log
  31.  
  32. ; create debug log as debug.log (defaults to same directory as sendmail.exe)
  33. ; uncomment to enable debugging
  34.  
  35. ;debug_logfile=debug.log
  36.  
  37. ; if your smtp server requires authentication, modify the following two lines
  38.  
  39. auth_password=***********
Advertisement
Add Comment
Please, Sign In to add comment