Created
November 25, 2012 10:25
-
-
Save Marlinc/4143005 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loadmodule "src/modules/commands.so"; | |
loadmodule "src/modules/cloak.so"; | |
me { | |
name "dev.mms-projects.net"; | |
info "MMS-Projects Development server"; | |
numeric 100; | |
}; | |
admin { | |
"Developer"; | |
}; | |
class clients { | |
pingfreq 90; | |
maxclients 500; | |
sendq 100000; | |
recvq 2000; | |
}; | |
class servers { | |
pingfreq 90; | |
maxclients 10; | |
sendq 1000000; | |
connfreq 60; | |
}; | |
oper dev { | |
class clients; | |
from { | |
userhost *@*; | |
}; | |
password "dev"; | |
flags { | |
netadmin; | |
can_zline; | |
can_gzline; | |
can_gkline; | |
can_restart; | |
can_die; | |
can_rehash; | |
global; | |
}; | |
}; | |
tld { | |
mask *@*; | |
motd "ircd.motd"; | |
rules "ircd.rules"; | |
}; | |
set { | |
network-name "MMS-Projects IRC"; | |
help-channel "#MMS.help"; | |
default-server "irc.mms-projects.net"; | |
services-server "services.mms-projects.net"; | |
hiddenhost-prefix "MMS"; | |
maxchannelsperuser 15; | |
options { | |
hide-ulines; | |
}; | |
hosts { | |
local mms-projects.net; | |
global mms-projects.net; | |
coadmin mms-projects.net; | |
admin mms-projects.net; | |
servicesadmin mms-projects.net; | |
netadmin mms-projects.net; | |
}; | |
cloak-keys { | |
"fghjk567uyGHJk"; | |
"576ugkGHJKn"; | |
"78tyihg87GHJ9"; | |
}; | |
oper-only-stats "*"; | |
kline-address "[email protected]"; | |
modes-on-connect "+x"; | |
options { | |
show-connect-info; | |
}; | |
throttle { | |
connections 50; | |
period 10s; | |
}; | |
anti-flood { | |
nick-flood 3:60; | |
}; | |
}; | |
allow { | |
ip *; | |
hostname *; | |
class clients; | |
maxperip 10000; | |
}; | |
listen *:6667; | |
link channels.mms-projects.net { | |
username *; | |
hostname *; | |
bind-ip *; | |
port 7070; | |
hub *; | |
password-connect "PassWord"; | |
password-receive "PassWord"; | |
class servers; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment