Guest User

Untitled

a guest
Dec 16th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. ###########################################################################
  2. #
  3. # Mail-related options
  4. #
  5. ###########################################################################
  6.  
  7. # NOTE: if UseMail is not set, all parameters after it in this section
  8. # are optional.
  9.  
  10. # UseMail [OPTIONAL]
  11. #
  12. # This option enables the mail commands in Services. You may choose
  13. # to disable it if you have no sendmail-compatible mailer installed.
  14. # This setting is [REQUIRED] if NSEmailReg is enabled.
  15.  
  16. UseMail
  17.  
  18. # SendMailPath <path> [REQUIRED]
  19. #
  20. # This is how we should call SendMail to send a mail. It must be
  21. # called with all parameters needed to make it scan the mail input
  22. # to find the mail recipient; consult your SendMail documentation.
  23. #
  24. # Postfix users must use the compatible sendmail utility provided
  25. # with it; this one usually needs no parameters on the command line.
  26. # Most sendmail applications (or replacements of it) require the -t
  27. # option to be used.
  28.  
  29. SendMailPath "/usr/sbin/sendmail -t"
  30.  
  31. # SendFrom <e-mail> [REQUIRED]
  32. #
  33. # This is the e-mail from which all the e-mails are to be sent. It should
  34. # really exist.
  35.  
  36. SendFrom contact@hackgr.eu
  37.  
  38. # RestrictMail [OPTIONAL]
  39. #
  40. # When enabled, SENDPASS will be restricted to IRC operators.
  41. #
  42. # WARNING: if you choose to not enable this option, you should limit
  43. # the number of processes the services user can have at a time (you can
  44. # create a special user for this; remember to never launch Services as root).
  45.  
  46. RestrictMail
  47.  
  48. # MailDelay <time> [RECOMMENDED]
  49. #
  50. # This controls the minimum amount of time an user must wait before sending
  51. # another mail after it has sent one. It also controls the minimum time
  52. # an user must wait before it can receive another mail.
  53. #
  54. # This feature prevents users from being mail bombed using Services and
  55. # should definitely be used.
  56.  
  57. MailDelay 5m
  58.  
  59. # DontQuoteAddresses [OPTIONAL]
  60. #
  61. # When enabled, services will not attempt to "" the TO: fields in mails
  62. #
  63. # So far we only know of ESMTP/QMail which need this set.
  64. #
  65.  
  66. #DontQuoteAddresses
  67.  
  68. # ForkForMail [OPTIONAL]
  69. #
  70. # When enabled, services will fork when sending mail, which means there is no
  71. # services lag from mail. This is only supported on operating systems that allow
  72. # the use of forking (eg, not Windows).
  73. #
  74.  
  75. #ForkForMail
Add Comment
Please, Sign In to add comment