Advertisement
Yuuki_Asuna

services.conf

Jan 9th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. mail
  2. {
  3. /*
  4. * If set, this option enables the mail commands in Services. You may choose
  5. * to disable it if you have no Sendmail-compatible mailer installed. Whilst
  6. * this directive (and entire block) is optional, it is required if
  7. * nickserv:registration is set to yes.
  8. */
  9. usemail = yes
  10.  
  11. /*
  12. * This is the command-line that will be used to call the mailer to send an
  13. * e-mail. It must be called with all the parameters needed to make it
  14. * scan the mail input to find the mail recipient; consult your mailer
  15. * documentation.
  16. *
  17. * Postfix users must use the compatible sendmail utility provided with
  18. * it. This one usually needs no parameters on the command-line. Most
  19. * sendmail applications (or replacements of it) require the -t option
  20. * to be used.
  21. */
  22. sendmailpath = "/usr/sbin/sendmail.postfix -t"
  23.  
  24. /*
  25. * This is the e-mail address from which all the e-mails are to be sent from.
  26. * It should really exist.
  27. */
  28. sendfrom = "fioregaming.com@FioreGaming.com"
  29.  
  30. /*
  31. * This controls the minimum amount of time a user must wait before sending
  32. * another e-mail after they have sent one. It also controls the minimum time
  33. * a user must wait before they can receive another e-mail.
  34. *
  35. * This feature prevents users from being mail bombed using Services and
  36. * it is highly recommended that it be used.
  37. *
  38. * This directive is optional, but highly recommended.
  39. */
  40. delay = 5m
  41.  
  42. /*
  43. * If set, Services will not attempt to put quotes around the TO: fields
  44. * in e-mails.
  45. *
  46. * This directive is optional, and as far as we know, it's only needed
  47. * if you are using ESMTP or QMail to send out e-mails.
  48. */
  49. #dontquoteaddresses = yes
  50.  
  51. /*
  52. * The subject and message of emails sent to users when they register accounts.
  53. */
  54. registration_subject = "Nickname registration for %n"
  55. registration_message = "Hi,
  56.  
  57. You have requested to register the nickname %n on %N.
  58. Please type \" /msg NickServ CONFIRM %c \" to complete registration.
  59.  
  60. If you don't know why this mail was sent to you, please ignore it silently.
  61.  
  62. %N administrators."
  63.  
  64. /*
  65. * The subject and message of emails sent to users when they request a new password.
  66. */
  67. reset_subject = "Reset password request for %n"
  68. reset_message = "Hi,
  69.  
  70. You have requested to have the password for %n reset.
  71. To reset your password, type \" /msg NickServ CONFIRM %n %c \"
  72.  
  73. If you don't know why this mail was sent to you, please ignore it silently.
  74.  
  75. %N administrators."
  76.  
  77. /*
  78. * The subject and message of emails sent to users when they request a new email address.
  79. */
  80. emailchange_subject = "Email confirmation"
  81. emailchange_message = "Hi,
  82.  
  83. You have requested to change your email address from %e to %E.
  84. Please type \" /msg NickServ CONFIRM %c \" to confirm this change.
  85.  
  86. If you don't know why this mail was sent to you, please ignore it silently.
  87.  
  88. %N administrators."
  89.  
  90. /*
  91. * The subject and message of emails sent to users when they receive a new memo.
  92. */
  93. memo_subject = "New memo"
  94. memo_message = "Hi %n,
  95.  
  96. You've just received a new memo from %s. This is memo number %d.
  97.  
  98. Memo text:
  99.  
  100. %t"
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement