Advertisement
Guest User

Untitled

a guest
Jul 5th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. loadmodule "src/modules/commands.so";
  2. loadmodule "src/modules/cloak.so";
  3. #loadmodule "src/modules/courtroom_lite.so";
  4. #loadmodule "src/modules/m_elmer.so";
  5. #loadmodule "src/modules/m_iscmd.so";
  6. #loadmodule "src/modules/netadmins.so";
  7. #loadmodule "src/modules/opers.so";
  8. #loadmodule "src/modules/textban.so";
  9.  
  10. include "help.conf";
  11. include "badwords.channel.conf";
  12. include "badwords.message.conf";
  13. include "badwords.quit.conf";
  14. include "spamfilter.conf";
  15. include "aliases/aliases.conf";
  16. include "aliases/anope.conf";
  17. include "conf/links.conf";
  18. include "conf/oper.conf";
  19. #include "aliases/love.conf";
  20. #include "aliases/line.conf";
  21.  
  22. me
  23. {
  24. name "irc.JustIRC.org";
  25. info "Home";
  26. numeric 57;
  27. };
  28.  
  29. admin {
  30. David;
  31. };
  32.  
  33. class clients {
  34. pingfreq 120;
  35. maxclients 2000;
  36. sendq 10000000;
  37. recvq 8000;
  38. };
  39.  
  40. class servers {
  41. pingfreq 120;
  42. maxclients 150;
  43. sendq 1000000;
  44. connfreq 100;
  45. };
  46. allow
  47. {
  48. ip *@*;
  49. hostname *@*;
  50. class
  51. clients;
  52. maxperip 2;
  53. };
  54.  
  55.  
  56. allow channel {
  57. channel "#Help";
  58. };
  59. listen 70.39.105.44:6667;
  60. listen 70.39.105.44:6669;
  61. listen 70.39.105.44:7000;
  62.  
  63. ulines {
  64.  
  65. stats.irc;
  66. services.irc;
  67. };
  68.  
  69. drpass {
  70. restart "LXru7TAYfB1wE3s6";
  71. die "nNJq1octAH4gGvA7";
  72. };
  73.  
  74. log "ircd.log" {
  75. /* Delete the log file and start a new one when it reaches 2MB, leave this out to always use the
  76. same log */
  77. maxsize 2097152;
  78. flags {
  79. oper;
  80. kline;
  81. connects;
  82. server-connects;
  83. kills;
  84. errors;
  85. sadmin-commands;
  86. chg-commands;
  87. oper-override;
  88. spamfilter;
  89. };
  90. };
  91.  
  92.  
  93. ban nick {
  94. mask "*C*h*a*n*S*e*r*v*";
  95. reason "Reserved for Services";
  96. };
  97.  
  98. ban nick {
  99. mask "*N*i*c*k*S*e*r*v*";
  100. reason "Reserved for Services";
  101. };
  102.  
  103.  
  104.  
  105. set {
  106. network-name "irc.JustIRC.org";
  107. default-server "70.39.105.44:6667";
  108. services-server "services.irc";
  109. stats-server "stats.irc";
  110. help-channel "#help";
  111. timesynch "yes";
  112. hiddenhost-prefix "doh";
  113. cloak-keys {
  114. "aoAr1HnR6gl3sJ7hVz4Zb7×4YwpWZ";
  115. "ksWj9ImW0k20dO3cWm9Ej2g9RbdG";
  116. "phTl4EiF7n26sI0jDw2Dn1c6RlfK";
  117. };
  118. hosts {
  119. local "staff@JustIRC.org";
  120. global "staff@JustIRC.org";
  121. coadmin "staff@JustIRC.org";
  122. admin "staff@JustIRC.org";
  123. servicesadmin "staff@JustIRC.org";
  124. netadmin "staff@JustIRC.org";
  125. host-on-oper-up "yes";
  126. };
  127. };
  128.  
  129. set {
  130. kline-address "abuse@JustIRC.org";
  131. modes-on-connect "+ixw";
  132. modes-on-oper "+Wxwgs";
  133. modes-on-join "+iwx";
  134. oper-auto-join "#opers";
  135. auto-join
  136. options {
  137. hide-ulines;
  138. identd-check;
  139. show-connect-info;
  140. };
  141.  
  142. maxchannelsperuser 10;
  143. anti-spam-quit-message-time 10s;
  144. oper-only-stats "okfGsMRUEelLCXzdD";
  145.  
  146. throttle {
  147. connections 3;
  148. period 60s;
  149. };
  150.  
  151. anti-flood {
  152. nick-flood 3:60;
  153. };
  154.  
  155. spamfilter {
  156. ban-time 1d;
  157. ban-reason "Spam/Advertising";
  158. virus-help-channel "#help";
  159. /* except "#help"; channel to exempt from filtering */
  160. };
  161. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement