summaryrefslogtreecommitdiff
path: root/src/config.cpp
AgeCommit message (Collapse)Author
2013-05-11Fix config to default prepend_channel true for fantasyCharles Kingsley
2013-05-08Fix reading multi line quotes from the conf with blank lines or lines with ↵Adam
only whitespace
2013-05-07Fix setting some default flags, reading fantasy blocks, and minusers setting ↵Adam
being off by 1
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-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-05Cache timeoutcheck and fix a typo in example.confAdam
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-11Pass new config and the new config reader to the OnReload event, aswell as ↵Adam
call it on module load on modules that hook to it
2013-04-09Allow privilege descs to be read from the config to override the defaultsAdam
2013-04-08Made auto* chanserv privileges not hard coded.Adam
Made cs_statusupdate not remove status on users if they still match other entries. Move privilege descriptions out of the config
2013-04-07Optimizations of much of the more commonly used codeAdam
2013-03-31Add networkinfo:modelistsize config option to set the max size of b/e/I listsAdam
2013-03-14Add group and hide setings to fantasy{} blocksAdam
2013-03-14Fix setting BSDefFlags from the configAdam
2013-02-14Switch Destroy methods to deleteAdam
2013-01-31Update src/config.cppartemiiav
2013-01-31Some configuration file updates: Removed now non-existing settings. Redid ↵Robby-
some existing settings to look more consistent/uniform. Added some missing commands/permissions. Merged operserv/modlist permission into operserv/modinfo. Fixed ChanServ INFO privilege to actually work for /BotServ INFO too for those users who have it, instead of only for founders. Fixed some typos aswell as removed whitespaces along the way.
2013-01-30Remove sendpass from the configs and the config reader since it no longer existsAdam
2013-01-24Fix memo signon and memo receive default flag namesAdam
2013-01-22Add hidenetsplitquit config option to not show splits in /ns info's last ↵Adam
quit field
2013-01-21Merge usefulness of Flags and Extensible classes into Extensible, made most ↵Adam
flags we have juse strings instead of defines/enums
2013-01-13Allow grouping commands to make help output easier to comprehendAdam
2013-01-13Allow the config parser to skip over gettext's _() to allow translating ↵Adam
config values
2013-01-09Update copyright to 2013. This was done with:Adam
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-2012 Anope Team/-2013 Anope Team/i' {} \;
2013-01-08Use m_rewrite to rewrite op, deop, halfop, ... etcAdam
2012-12-15Move DNS handling to a moduleAdam
2012-11-30Allow services to return more than one NS recordAdam
2012-11-26Fixed rehasing doing weird things to botmodes due to trying to set on nick ↵Adam
not uid
2012-11-25Restrict the length of kick reasons in cs_kick, cs_ban, and cs_akickAdam
2012-11-25Merge ns_ghost, ns_recover, and ns_release. Fix svskilling users on Unreal.Adam
2012-11-22Pretty large coding style cleanup, in source docAdam
cleanup, and allow protocol mods to depend on each other
2012-11-09Add a config option to disable saslAdam
2012-11-01Expand options:hideprivilegedcommands to not show commands requiring ↵Adam
authentication to unidentified users
2012-10-31Fix ns_ghost and ns_recover, add nicksev:restoreonghostAdam
2012-10-30Send uids everywhere when setting modes on clientsAdam
2012-10-26Add nickserv:modesonid config option to set what modes users get on identifyAdam
2012-10-24BIND's forward ability did not work as I expectedAdam
because it will not forward non recursive queries. So, added support for SOA, NS, and AXFR requests.
2012-10-22Cleanup of last few commits/warning fixAdam
2012-10-22Add os_dns, a way to control your DNS zone via servicesAdam
2012-10-08Made fantasy commands configurableAdam
2012-10-07Add a config option for server side topic locksattilamolnar
2012-10-01Add networkinfo:chanlen config directiveAdam
2012-09-07Add chanserv/set/autoop, like nickserv/set/autoop but for channelsAdam
2012-09-07Made session tracking ip based, not host based, and allow using CIDR to ↵Adam
group multiple ips from one subnet to one session
2012-09-07Allow configuring killquick and kill delaysAdam
2012-09-07Allow ; and } in quoted stringsAdam
2012-08-08Put motd in conf/ not data/ and fixed the default values in the configRobby