Advertisement
Guest User

Untitled

a guest
Jun 7th, 2012
652
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [sendmail]
  2.  
  3. ; you must change mail.mydomain.com to your smtp server,
  4. ; or to IIS's "pickup" directory.  (generally C:\Inetpub\mailroot\Pickup)
  5. ; emails delivered via IIS's pickup directory cause sendmail to
  6. ; run quicker, but you won't get error messages back to the calling
  7. ; application.
  8.  
  9. smtp_server=smtp.gmail.com
  10.  
  11. ; smtp port (normally 25)
  12.  
  13. smtp_port=465
  14.  
  15. ; SMTPS (SSL) support
  16. ;   auto = use SSL for port 465, otherwise try to use TLS
  17. ;   ssl  = alway use SSL
  18. ;   tls  = always use TLS
  19. ;   none = never try to use SSL
  20.  
  21. smtp_ssl=auto
  22.  
  23. ; the default domain for this server will be read from the registry
  24. ; this will be appended to email addresses when one isn't provided
  25. ; if you want to override the value in the registry, uncomment and modify
  26.  
  27. ;default_domain=mydomain.com
  28.  
  29. ; log smtp errors to error.log (defaults to same directory as sendmail.exe)
  30. ; uncomment to enable logging
  31.  
  32. error_logfile=error.log
  33.  
  34. ; create debug log as debug.log (defaults to same directory as sendmail.exe)
  35. ; uncomment to enable debugging
  36.  
  37. debug_logfile=debug.log
  38.  
  39. ; if your smtp server requires authentication, modify the following two lines
  40.  
  41. auth_username=YOUR-EMAIL-HERE
  42. auth_password=YOURPASSWORD
  43.  
  44. ; if your smtp server uses pop3 before smtp authentication, modify the
  45. ; following three lines.  do not enable unless it is required.
  46.  
  47. ;pop3_server=
  48. ;pop3_username=
  49. ;pop3_password=
  50.  
  51. ; force the sender to always be the following email address
  52. ; this will only affect the "MAIL FROM" command, it won't modify
  53. ; the "From: " header of the message content
  54.  
  55. force_sender=YOUR-EMAIL-HERE
  56.  
  57. ; force the sender to always be the following email address
  58. ; this will only affect the "RCTP TO" command, it won't modify
  59. ; the "To: " header of the message content
  60.  
  61. ;force_recipient=
  62.  
  63. ; sendmail will use your hostname and your default_domain in the ehlo/helo
  64. ; smtp greeting.  you can manually set the ehlo/helo name if required
  65.  
  66. ;hostname=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement