summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-20made our database backup filenames more readableDukePyrolator
2013-05-19Mark service:channels as a "botchannel" and don't try to hold them on sync, ↵Adam
as the client should always be in the channel
2013-05-18Give botserv bots assigned by persist the same botmodes as normal bots, fix ↵Adam
some typos, remove unused variable
2013-05-18Fix desync when empty permanent channels are dropped on ircds that no have ↵Adam
permanent channel mode
2013-05-18Ignore define{} blocks defining directives to itselfAdam
2013-05-18Add botserv bot usermode config optionAdam
2013-05-18Add a config option for the default log botAdam
2013-05-18Tabify some stuff in config.cppAdam
2013-05-18Fix Windows buildAdam
2013-05-17Yet another variable shadowing error which only show on newer gcc versionsAdam
2013-05-17You would think my compiler would at least warn me about this. but no.Adam
2013-05-17Add Redis database supportAdam
2013-05-17Removed some hard coded command names in help outputAdam
2013-05-15do not validate nicks from ulined servers. this also fixes bug #1521DukePyrolator
2013-05-12improved handling of mlocks and topiclocks on inspircdDukePyrolator
2013-05-11Fix config to default prepend_channel true for fantasyCharles Kingsley
2013-05-11Update botserv.example.conf for xop fantasy commandsCharles Kingsley
2013-05-10Fix ChannelMode::CanSetAdam
2013-05-10Fix typo in example.conf - thx rodr1goCharles Kingsley
2013-05-08Readd check for users.size() == 1 before holding channelsAdam
2013-05-08Fixed some issues and desyncs with creating empty permanent channels on ↵Adam
startup & dropping empty channels
2013-05-08Fix crash when we kill users because of a double freeAdam
2013-05-08Check for peace being on before denying a mode change in cs_modeAdam
2013-05-08Allow using sxlines on ircds that do not support them, since we always ↵Adam
enforce them anyway
2013-05-08Fix suspend info output in info and improved itAdam
2013-05-08Add activate_on_set option for hostservAdam
2013-05-08Fix reading multi line quotes from the conf with blank lines or lines with ↵Adam
only whitespace
2013-05-08Make sockaddrs/cidr not throw on invalid ips to give us an easier/cheaper ↵Adam
way to test for a valid IP
2013-05-07Fix setting some default flags, reading fantasy blocks, and minusers setting ↵Adam
being off by 1
2013-05-07Allow /os exception to contain CIDR masksAdam
2013-05-06Fix a few issues with the poll socketengineAdam
2013-05-06Use I_OnUserQuit for os_session because I_OnPreUserLogoff gets called too ↵Adam
late, after the users server can be gone. Fix a couple other small things
2013-05-06Update the rest of modules.example.conf, default inspircd status modes to a ↵Adam
sane rank incase they are prefixless, and 50 other things
2013-05-05Merge pull request #14 from attilamolnar/1.9+inspmodesAdam
InspIRCd: Recognize a few more channel modes that weren't recognized
2013-05-06Fix extras buildAdam
2013-05-06removed an unused variableDukePyrolator
2013-05-05Don't forget to CloseHandle threads on win32, spotted by AttilaAdam
2013-05-05The const char* specialization of this no longer worksAdam
2013-05-05That doesn't work either, just don't use references.Adam
find ./ -name '*.cpp' -exec sed -i 's/Get<const Anope::string\&>/Get<const Anope::string>/g' {} \;
2013-05-05The default arguments are references to temporaries which fall out of scope ↵Adam
once the function returns, so we can't use them. gcc is just nice. cronus sucks. also validate a few more config options
2013-05-05Move module header files to include/modules to fix naming conflicts with ↵Adam
system headers
2013-05-05Fix WindowsAdam
2013-05-05Cache timeoutcheck and fix a typo in example.confAdam
2013-05-05Add an option to sepstream to allow it to return empty tokens if multiple ↵Adam
separators are found in a row
2013-05-05Dont check for noquit/quitstorm, check and be sure all users are gone regardlessAdam
2013-05-05Cleanup of dns stuff based on stuff found making inspircd's moduleAdam
2013-05-05Rework the config file reader to be much more flexible and move many ↵Adam
configuration directives to the actual modules they are used in.
2013-04-16Move extras header files out of extras so when users copy modules out they ↵Adam
dont need the headers too
2013-04-15Rewrote modules/CMakeLists.txt and do not build the 'extras' modules, if ↵Adam
users want them built they should copy or symlink them out of extras
2013-04-14Allow assigning service bots via /inviteAdam