Guest User

Untitled

a guest
Dec 10th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. The TOP Section
  2.  
  3. /* (*)access
  4. * Command access changes for ChanServ.
  5. */
  6. access {
  7. "REGISTER" = "sra:chan:admin";
  8. };
  9.  
  10. /* fantasy
  11. * Do you want to enable fantasy commands? This can
  12. * use a lot of CPU up, and will only work if you have
  13. * join_chans (in general) enabled as well.
  14. */
  15.  
  16.  
  17. The CLASS Section
  18.  
  19. operclass "ircop" {
  20. privs {
  21. special:ircop;
  22. };
  23.  
  24. privs {
  25. user:auspex;
  26. user:admin;
  27. user:sendpass;
  28. user:vhost;
  29. user:mark;
  30. };
  31.  
  32. privs {
  33. chan:cmodes;
  34. chan:joinstaffonly;
  35. };
  36.  
  37. privs {
  38. general:auspex;
  39. general:helper;
  40. general:viewprivs;
  41. general:flood;
  42. };
  43.  
  44. privs {
  45. operserv:omode;
  46. operserv:akill;
  47. operserv:jupe;
  48. operserv:global;
  49. };
  50.  
  51. privs {
  52. group:auspex;
  53. group:admin;
  54. };
  55. };
  56.  
  57. operclass "sra" {
  58. /* You can inherit privileges from a lower operclass. */
  59. extends "ircop";
  60.  
  61. privs {
  62. user:hold;
  63. user:regnolimit;
  64. };
  65.  
  66. privs {
  67. general:metadata;
  68. general:admin;
  69. };
  70.  
  71. privs {
  72. operserv:massakill;
  73. operserv:akill-anymask;
  74. operserv:noop;
  75. operserv:grant;
  76. operserv:override;
  77. };
  78. privs {
  79. chan:auspex;
  80. chan:admin;
  81. };
  82. /* needoper
  83. * Only grant privileges to IRC users in this oper class if they
  84. * are opered; other use of privilege (channel succession, XMLRPC,
  85. * etc.) is unaffected by this.
  86. */
  87. needoper;
  88. };
  89.  
  90.  
  91. /* (*) Operator blocks specify accounts with certain privileges
  92. * Oper classes must be defined before they are used in operator blocks.
  93. */
  94. operator "SwGoh" {
  95. /* operclass */
  96. operclass = "sra";
  97. /* password
  98. * Normally, the user needs to identify/log in using the account's
  99. * password, and may need to be an IRCop (see operclass::needoper
  100. * above). If you consider this not secure enough, you can
  101. * specify an additional password here, which the user must enter
  102. * using the OperServ IDENTIFY command, before the privileges can
  103. * be used.
  104. * The password must be encrypted if a crypto module is in use.
  105. */
  106. #password = "$1$3gJMO9by$0G60YE6GqmuHVH3AnFPor1";
  107. };
Add Comment
Please, Sign In to add comment