Advertisement
Guest User

config

a guest
Feb 23rd, 2011
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.15 KB | None | 0 0
  1. loadmodule "src/modules/commands.so";
  2. loadmodule "src/modules/cloak.so";
  3.  
  4. include "aliases/anope.conf";
  5. include "help.conf";
  6. include "badwords.channel.conf";
  7. include "badwords.message.conf";
  8. include "badwords.quit.conf";
  9. include "spamfilter.conf";
  10.  
  11. me
  12. {
  13. name "rampage.ircmadness.net";
  14. info "IRCMadness - Rampage Server";
  15. numeric 1;
  16. };
  17.  
  18.  
  19. admin {
  20. "Joseph Berry";
  21. "Joe";
  22. "-----";
  23. "Raymond Crowther";
  24. "Ray";
  25. };
  26.  
  27.  
  28. class clients
  29. {
  30. pingfreq 250;
  31. maxclients 500;
  32. sendq 100000;
  33. recvq 8000;
  34. };
  35.  
  36. class servers
  37. {
  38. pingfreq 250;
  39. maxclients 10;
  40. sendq 1000000;
  41. connfreq 100;
  42. };
  43.  
  44. allow {
  45. ip *@*;
  46. hostname *@*;
  47. class clients;
  48. maxperip 500;
  49. };
  50.  
  51.  
  52.  
  53.  
  54. oper Joe {
  55. class clients;
  56. from {
  57. userhost *@*;
  58. };
  59. password "pass";
  60. flags
  61. {
  62. netadmin;
  63. can_rehash;
  64. can_localkill;
  65. can_globalkill;
  66. local;
  67. can_globalroute;
  68. can_localroute;
  69. can_zline;
  70. can_gzline;
  71. can_gkline;
  72. global;
  73. can_kline;
  74. can_unkline;
  75. can_localnotice;
  76. can_globalnotice;
  77. get_umodew;
  78. can_override;
  79. can_addline;
  80. get_umodew;
  81. get_host;
  82. can_dccdeny;
  83. };
  84. };
  85.  
  86. oper Matt {
  87. class clients;
  88. from {
  89. userhost *@*;
  90. };
  91. password "pass";
  92. flags
  93. {
  94. can_globalroute;
  95. can_localroute;
  96. can_gzline;
  97. can_gkline;
  98. global;
  99. can_kline;
  100. can_unkline;
  101. can_localnotice;
  102. can_globalnotice;
  103. get_umodew;
  104. can_override;
  105. can_addline;
  106. get_host;
  107. };
  108. };
  109.  
  110. oper Ray {
  111. class clients;
  112. from {
  113. userhost *@*;
  114. };
  115. password "pass";
  116. flags
  117. {
  118. netadmin;
  119. can_rehash;
  120. can_localkill;
  121. can_globalkill;
  122. local;
  123. can_globalroute;
  124. can_localroute;
  125. can_zline;
  126. can_gzline;
  127. can_gkline;
  128. global;
  129. can_kline;
  130. can_unkline;
  131. can_localnotice;
  132. can_globalnotice;
  133. get_umodew;
  134. can_override;
  135. can_addline;
  136. get_umodew;
  137. get_host;
  138. can_dccdeny;
  139. };
  140. };
  141.  
  142. listen 72.20.21.111:12312;
  143.  
  144.  
  145. ulines {
  146. services.ircmadness.net;
  147. statserv.ircmadness.net;
  148. };
  149.  
  150.  
  151. drpass {
  152. restart "pass";
  153. die "pass";
  154. };
  155.  
  156.  
  157. log "ircd.log" {
  158. maxsize 2097152;
  159. flags {
  160. oper;
  161. kline;
  162. connects;
  163. server-connects;
  164. kills;
  165. errors;
  166. sadmin-commands;
  167. chg-commands;
  168. oper-override;
  169. spamfilter;
  170. };
  171. };
  172.  
  173. alias NickServ { type services; };
  174. alias ChanServ { type services; };
  175. alias OperServ { type services; };
  176. alias HelpServ { type services; };
  177. alias StatServ { type stats; };
  178.  
  179. include "aliases/aliases.conf";
  180.  
  181.  
  182. alias "identify" {
  183. format "^#" {
  184. target "chanserv";
  185. type services;
  186. parameters "IDENTIFY %1-";
  187. };
  188. format "^[^#]" {
  189. target "nickserv";
  190. type services;
  191. parameters "IDENTIFY %1-";
  192. };
  193. type command;
  194. };
  195.  
  196.  
  197.  
  198. alias "services" {
  199. format "^#" {
  200. target "chanserv";
  201. type services;
  202. parameters "%1-";
  203. };
  204. format "^[^#]" {
  205. target "nickserv";
  206. type services;
  207. parameters "%1-";
  208. };
  209. type command;
  210. };
  211.  
  212. alias "identify" {
  213. format "^#" {
  214. target "chanserv";
  215. type services;
  216. parameters "IDENTIFY %1-";
  217. };
  218. format "^[^#]" {
  219. target "nickserv";
  220. type services;
  221. parameters "IDENTIFY %1-";
  222. };
  223. type command;
  224. };
  225.  
  226.  
  227. alias "glinebot" {
  228. format ".+" {
  229. command "gline";
  230. type real;
  231. parameters "%1 2d Bots are not allowed on this server";
  232. };
  233. type command;
  234. };
  235.  
  236. tld {
  237. mask *@*;
  238. motd "ircd.motd";
  239. rules "ircd.motd";
  240. };
  241.  
  242.  
  243. ban nick {
  244. mask "*C*h*a*n*S*e*r*v*";
  245. reason "Reserved for Services";
  246. };
  247.  
  248.  
  249. ban realname {
  250. mask "Swat Team";
  251. reason "mIRKFORCE";
  252. };
  253.  
  254. ban realname {
  255. mask "sub7server";
  256. reason "sub7";
  257. };
  258.  
  259.  
  260.  
  261. deny dcc {
  262. filename "*sub7*";
  263. reason "Possible Sub7 Virus";
  264. };
  265.  
  266.  
  267. set {
  268. network-name "IRCMadness";
  269. default-server "rampage.ircmadness.net";
  270. services-server "services.ircmadness.net";
  271. help-channel "#help";
  272. hiddenhost-prefix "hub";
  273.  
  274. cloak-keys {
  275. "kOpnlOgFLPSJpZ0hNKy6m5AXwGPtGJ";
  276. "cRnr5y6b3HQMh5B8dfICcUxCIU9ndF";
  277. "Wfm9xhyujr2Z49Vv7YAFqCqN5Yy4bB";
  278. };
  279. hosts {
  280. local "localop.ircmadness.net";
  281. global "globalop.ircmadness.net";
  282. coadmin "coadmin.ircmadness.net";
  283. admin "admin.ircmadness.net";
  284. servicesadmin "servicesadmin.ircmadness.net";
  285. netadmin "netadmin.ircmadness.net";
  286. host-on-oper-up "yes";
  287.  
  288. };
  289. };
  290.  
  291.  
  292.  
  293. set {
  294. kline-address "[email protected]";
  295. modes-on-connect "+ixw";
  296. modes-on-oper "+xwgs";
  297. modes-on-join "+nt";
  298. options {
  299. hide-ulines;
  300. show-connect-info;
  301. };
  302.  
  303. maxchannelsperuser 15;
  304. anti-spam-quit-message-time 30s;
  305.  
  306. oper-only-stats "okfGsMRUEelLCXzdD";
  307.  
  308. throttle {
  309. connections 5;
  310. period 60s;
  311. };
  312. anti-flood {
  313. nick-flood 3:60;
  314. };
  315.  
  316.  
  317. spamfilter {
  318. ban-time 1d;
  319. ban-reason "Spam/Advertising";
  320. virus-help-channel "#help";
  321. };
  322. };
  323.  
  324. link services.ircmadness.net {
  325. username *;
  326. hostname 72.20.21.111;
  327. bind-ip *;
  328. port 12312;
  329. hub *;
  330. password-connect password;
  331. password-receive password;
  332. class servers;
  333. };
  334.  
  335. link madness.ircmadness.net {
  336. username *;
  337. hostname 72.20.21.111;
  338. bind-ip *;
  339. port 12312;
  340. password-connect password;
  341. password-receive password;
  342. hub rampage.ircmadness.net;
  343. class servers;
  344. };
  345.  
  346. #link statserv.ircmadness.net {
  347. #username *;
  348. #hostname 72.20.21.111;
  349. #bind-ip 72.20.21.111;
  350. #port 12312;
  351. #password-connect password;
  352. #password-recieve password;
  353. #hub *;
  354. #class servers;
  355. #};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement