Advertisement
Guest User

Untitled

a guest
Apr 8th, 2017
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. ; tls = always use TLS
  2. ; none = never try to use SSL
  3. smtp_ssl=auto
  4. ; the default domain for this server will be read from the registry
  5. ; this will be appended to email addresses when one isn't provided
  6. ; if you want to override the value in the registry, uncomment and modify
  7. ;default_domain=smtp.mail.ru
  8. ; log smtp errors to error.log (defaults to same directory as sendmail.exe)
  9. ; uncomment to enable logging
  10. error_logfile=error.log
  11. ; create debug log as debug.log (defaults to same directory as sendmail.exe)
  12. ; uncomment to enable debugging
  13. ;debug_logfile=debug.log
  14. ; if your smtp server requires authentication, modify the following two lines
  15. auth_username=моя_почта_mail.ru
  16. auth_password=мой_пароль
  17. ; if your smtp server uses pop3 before smtp authentication, modify the
  18. ; following three lines. do not enable unless it is required.
  19. pop3_server=pop.mail.ru
  20. pop3_username=моя_почта_mail.ru
  21. pop3_password=мой_пароль
  22. ; force the sender to always be the following email address
  23. ; this will only affect the "MAIL FROM" command, it won't modify
  24. ; the "From: " header of the message content
  25. force_sender=моя_почта_mail.ru
  26. ; force the sender to always be the following email address
  27. ; this will only affect the "RCTP TO" command, it won't modify
  28. ; the "To: " header of the message content
  29. force_recipient=
  30. ; sendmail will use your hostname and your default_domain in the ehlo/helo
  31. ; smtp greeting. you can manually set the ehlo/helo name if required
  32. hostname=mail.ru
  33.  
  34. ; XAMPP: Comment out this if you want to work with an SMTP Server like
  35. Mercury
  36. SMTP =
  37. ;smtp_port = 25
  38. ; For Win32 only.
  39. ; http://php.net/sendmail-from
  40. sendmail_from =
  41. ; XAMPP IMPORTANT NOTE (1): If XAMPP is installed in a base directory with spaces (e.g. c:program filesE:xampp) fakemail and mailtodisk do not work correctly.
  42. ; XAMPP IMPORTANT NOTE (2): In this case please copy the sendmail or mailtodisk folder in your root folder (e.g. C:sendmail) and use this for sendmail_path.
  43. ; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)
  44. sendmail_path = "E:xamppsendmailsendmail.exe" -t"
  45. ; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the E:xamppmailoutput folder
  46. ;sendmail_path="E:xamppmailtodiskmailtodisk.exe"
  47. ; Force the addition of the specified parameters to be passed as extra parameters
  48. ; to the sendmail binary. These parameters will always replace the value of
  49. ; the 5th parameter to mail(), even in safe mode.
  50. ;mail.force_extra_parameters =
  51. ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
  52. mail.add_x_header=Off
  53. ; Log all mail() calls including the full path of the script, line #, to address and headers
  54. ;mail.log = "E:xamppphplogsphp_mail.log"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement