summaryrefslogtreecommitdiff
path: root/modules/pseudoclients
AgeCommit message (Collapse)Author
2019-01-01Update copyright to 2019.Robby
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2019 Anope Team/i' {} \;
2018-04-25Update copyright to 2018.Robby
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2018 Anope Team/i' {} \;
2017-10-12No longer try to create persistent channels on the flyAdam
Change initial channel creation to on post init so it will be part of the burst.
2017-03-23Remove weird warning in nickserv help which for some reason assumes admins' ↵Adam
abuse policies
2017-01-17Cleanup some excess whitespaces and tabs, and fix a few typos along the way.Robby
2017-01-16Update copyright to 2017.Robby
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2017 Anope Team/i' {} \; Added missing copyright headers to files that didn't have it yet.
2016-09-30memoserv: always use display for memo sourceAdam
2016-07-03#1677 apply sqlines even if the ircd doesn't on non opersAdam
2016-04-14Remove memos from memoinfo more reliablyAdam
2016-01-28Update copyright to 2016. This was done with:Robby
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-20.. Anope Team/-2014 Anope Team/i' {} \; Added missing copyright headers to files that didn't have it yet. Fixed some whitespace and blank lines along the way.
2016-01-23Apply regex sqlines on connect tooAdam
2016-01-19Couple user find by nick fixesAdam
2015-12-13Add some replacement tokens for akick reason and welcome noticeAdam
2015-09-25Fix chanserv botmodes.Robby
2015-09-06Merge pull request #126 from SaberUK/2.0+typosAdam
Fix a ton of typos.
2015-08-20Only remove collide timers if the account matches on idAdam
2015-07-08Fix a ton of typos.Peter Powell
2015-06-29#1649 don't update keepmodes during inhbaitAdam
2015-03-11Only matches sqlines against channels if they begin with a #Adam
2014-12-12Changed calls to Get() for bool extensible items to HasExt in the chanserv ↵Michał Zegan
module, remove duplication of code.
2014-12-05Update Kill() calls to pass source pointer instead of nameAdam
2014-11-25Move automatically identified for log message to usersAdam
2014-10-06Clean up collide timers on identify, otherwise you can login and logout ↵Adam
before the timer tick which will still enforce the collide
2014-10-06Clear pending collided state on release, fixes colliding users using recover ↵Adam
into enforcers
2014-08-24Change Channel::GetModeList to return a copy of the mode list, not aAdam
pair of lower/upper bound iterators. Sometimes when iterating the list, like in cs_mode, we can modify the contents of it, which combined with mlock always agressively trying to readd modes to it can do bad things.
2014-05-27Set timer owner for nickserv timersAdam
2014-05-21Core prep for p10 stuffAdam
2014-05-20Speed up akill xline checksAdam
Cache xline nick, user, host, etc instead of rebuilding it everytime its requested. Store users ip in sockaddr form and not string form to prevent having to rebuild sockaddrs when checking xlines. Also do not try to convert empty config values in Config::Get as this can be rather common if a non string configuration value is not set, and the cost of the ConvertException is great.
2014-05-14Fix access lists showing the wrong mask if the display nick for a groupAdam
expires but the group still exists. This can cause access entries for nicks to not be deleted whenever the nicks are deleted.
2014-03-10Do not send unregistered notice to users who are logged in, even if their ↵Adam
nick isn't registered
2014-03-10Set nickserv's modesonid on login tooAdam
2014-03-04Fix 2 crashes from removing the permanent channel mode from channels which ↵Adam
do not exist
2014-03-04Do not allow guest nicks to exceed nicklen, and use a default enforcer ↵Adam
ident/host if none is provided
2014-03-01Fix botserv help to show the correct fantasy charactersAdam
2014-02-27Do not take modes from users in channels with secureops off if we are always ↵Adam
lowering channels timestamps to their creations
2014-02-05Make it easier to use fantasy without botserv, and document itAdam
2014-01-26Use the SQLine reason in the kick reason for sqlined channelsAdam
2014-01-21Unbreak account stuff from commit ccae59430ab50393f43ccc38a6a6c0c24191b601.Adam
2014-01-04Fix recovering enforcers not properly quitting themAdam
2014-01-01Update copyright to 2014. This was done with:Adam
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-20.. Anope Team/-2014 Anope Team/i' {} \;
2013-12-31I don't think this OnBotKick to hold channels is necessary anymore as Sync ↵Adam
should cover everything now, and this causes weird things when the last user in a channel kicks themselves out using the bot. Also handle users rejoining a channel while its held better.
2013-12-27Fix crash when channels are registered that do not exist by non usersAdam
2013-12-26Fix not setting the persist flag on newly registered channels when the ↵Adam
permanent channel mode is set prior to registering or during registration
2013-11-21Shrink nick and channel default flags in db_old, otherwise converted ↵Adam
nicks/channels always end up with the defaults enabled, even if they explicitly have them set off. Fix setting nickserv defaults to none.
2013-10-28Stop requesting identification when changing nicks to a registered nick, and ↵Robby-
the current client certificate fingerprint matches one on the nickname's list.
2013-10-28Fix kill and killquick default expiry times.Robby-
ns_access and ns_cert: Fix accessmax defaults, also state in the config that 0 is not a valid value.
2013-10-28Fix some typos and touch up the configs a little.Robby-
2013-10-26moved some config options from example.conf to nickserv.example.confDukePyrolator
2013-10-05Always show expire time for nicks in /ns info to opers, even if the user is ↵Adam
online Make Anope::strftime show "now" if the time is now Fix typo in nickalias.cpp for the type of the last_seen field, spotted by grawity
2013-10-05Hide expires in /cs info if the channel is actively in use as it confuses peopleAdam