Guest User

Untitled

a guest
Jan 19th, 2019
692
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. ; configuration for fake sendmail
  2.  
  3. ; if this file doesn't exist, sendmail.exe will look for the settings in
  4. ; the registry, under HKLMSoftwareSendmail
  5.  
  6. [sendmail]
  7.  
  8. ; you must change mail.mydomain.com to your smtp server,
  9. ; or to IIS's "pickup" directory. (generally C:InetpubmailrootPickup)
  10. ; emails delivered via IIS's pickup directory cause sendmail to
  11. ; run quicker, but you won't get error messages back to the calling
  12. ; application.
  13.  
  14. smtp_server=smtp.gmail.com
  15.  
  16. ; smtp port (normally 25)
  17.  
  18. smtp_port=587
  19.  
  20. ; the default domain for this server will be read from the registry
  21. ; this will be appended to email addresses when one isn't provided
  22. ; if you want to override the value in the registry, uncomment and modify
  23.  
  24. default_domain=domain.com
  25.  
  26. ; log smtp errors to error.log (defaults to same directory as sendmail.exe)
  27. ; uncomment to enable logging
  28.  
  29. error_logfile=error.log
  30.  
  31. ; create debug log as debug.log (defaults to same directory as sendmail.exe)
  32. ; uncomment to enable debugging
  33.  
  34. ;debug_logfile=debug.log
  35.  
  36. ; if your smtp server requires authentication, modify the following two lines
  37.  
  38. auth_username=admin@whilgeek.com
  39. auth_password=19910610
  40.  
  41. ; if your smtp server uses pop3 before smtp authentication, modify the
  42. ; following three lines
  43.  
  44. pop3_server=
  45. pop3_username=
  46. pop3_password=
  47.  
  48. ; to force the sender to always be the following email address, uncomment and
  49. ; populate with a valid email address. this will only affect the "MAIL FROM"
  50. ; command, it won't modify the "From: " header of the message content
  51.  
  52. force_sender=webmaster@domain.com
  53.  
  54. ; sendmail will use your hostname and your default_domain in the ehlo/helo
  55. ; smtp greeting. you can manually set the ehlo/helo name if required
  56.  
  57. ;hostname=
  58.  
  59. [mail function]
  60. ; For Win32 only.
  61. SMTP = localhost
  62. smtp_port = 25
  63.  
  64. ; For Win32 only.
  65. sendmail_from = admin@whilgeek.com
  66.  
  67. ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
  68. sendmail_path =C:usrlibsendmail.exe -t
  69.  
  70. ; Force the addition of the specified parameters to be passed as extra parameters
  71. ; to the sendmail binary. These parameters will always replace the value of
  72. ; the 5th parameter to mail(), even in safe mode.
  73. ;mail.force_extra_parameters =
Add Comment
Please, Sign In to add comment