Guest User

Untitled

a guest
Dec 16th, 2018
67
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.  
  37. # RestrictMail [OPTIONAL]
  38. #
  39. # When enabled, SENDPASS will be restricted to IRC operators.
  40. #
  41. # WARNING: if you choose to not enable this option, you should limit
  42. # the number of processes the services user can have at a time (you can
  43. # create a special user for this; remember to never launch Services as root).
  44.  
  45. RestrictMail
  46.  
  47. # MailDelay <time> [RECOMMENDED]
  48. #
  49. # This controls the minimum amount of time an user must wait before sending
  50. # another mail after it has sent one. It also controls the minimum time
  51. # an user must wait before it can receive another mail.
  52. #
  53. # This feature prevents users from being mail bombed using Services and
  54. # should definitely be used.
  55.  
  56. MailDelay 5m
  57.  
  58. # DontQuoteAddresses [OPTIONAL]
  59. #
  60. # When enabled, services will not attempt to "" the TO: fields in mails
  61. #
  62. # So far we only know of ESMTP/QMail which need this set.
  63. #
  64.  
  65. #DontQuoteAddresses
  66.  
  67. # ForkForMail [OPTIONAL]
  68. #
  69. # When enabled, services will fork when sending mail, which means there is no
  70. # services lag from mail. This is only supported on operating systems that allow
  71. # the use of forking (eg, not Windows).
  72. #
  73.  
  74. #ForkForMail
Add Comment
Please, Sign In to add comment