aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_timedbans.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-08-281-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-08-271-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-06-191-1/+13
|\|
| * Fix unsetting timed bans with excessively long masks.Gravatar Sadie Powell2021-06-181-0/+13
| |
| * Avoid unnecessarily looking up the ban mode.Gravatar Sadie Powell2021-06-181-1/+1
| | | | | | | | | | We already have a ChanModeReference for this there's no need to look it up again.
* | Get rid of even more pointless copy/paste comments.Gravatar Sadie Powell2021-05-191-1/+0
| |
* | Move channel logic from InspIRCd to the new ChannelManager class.Gravatar Sadie Powell2021-05-081-1/+1
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-10/+6
| |
* | Convert various mode methods to take Mode::Change.Gravatar Sadie Powell2021-03-301-3/+3
| | | | | | | | | | | | | | | | - AccessCheck - AfterMode - BeforeMode - OnModeChange - OnRawMode
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-3/+3
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-3/+3
| |
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-1/+1
| |
* | Convert CmdResult to an 8-bit strongly typed enum.Gravatar Sadie Powell2020-10-271-6/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-08-251-0/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-07-301-0/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-07-291-10/+27
|\|
| * Replace all erroneous space indentation with tab indentation.Gravatar Sadie Powell2020-07-291-10/+10
| |
| * Allow disabling the timedbans set/unset notices (#1789).Gravatar iwalkalone2020-07-221-10/+25
| |
* | Alow modules to specify multiple syntax lines.Gravatar Sadie Powell2020-04-141-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-6/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-041-3/+3
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-311-1/+1
| |
| * Add Channel::WriteRemoteNotice and revert WriteNotice changes.Gravatar Sadie Powell2020-01-291-2/+2
| | | | | | | | | | | | This is a partial reversion of 687778b72e. See also: #1749.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-3/+12
|\|
| * Use irc::equals instead of strcasecmp where appropriate.Gravatar Sadie Powell2020-01-171-1/+1
| |
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-2/+11
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-12-081-6/+2
|\|
| * Allow Channel::WriteNotice send to other servers and status ranks.Gravatar Peter Powell2019-11-171-6/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-11-131-21/+26
|\|
| * Improve the timed ban notices (#1722).Gravatar Matt Schatz2019-10-241-21/+26
| | | | | | | | - Save the nick of the setter to use in the expiry message. - Change both notice messages to a standard and informative style.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-1/+1
|\|
| * Some more text fixes and improvements (#1618).Gravatar Robby2019-04-281-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-1/+1
|\|
| * Start using DurationString() in X-line additions andGravatar Matt Schatz2019-02-181-1/+1
| | | | | | | | a few other modules where it fits better than just showing seconds.
* | ModeParser: remove fakederef.Gravatar Sadie Powell2019-02-071-7/+7
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-6/+6
|/
* Only parse valid durations, don't treat invalid multipliers as seconds (#1538)Gravatar linuxdaemon2018-12-211-3/+3
|
* Implement IRCv3 message tag support.Gravatar Peter Powell2018-08-131-4/+4
| | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com>
* Add an accessor for the last mode change list to ModeParser.Gravatar Peter Powell2018-08-131-1/+1
| | | | GetLastParse will be going away soon.
* Use CommandBase::Params instead of std::vector<std::string>.Gravatar Peter Powell2018-07-261-2/+2
| | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters.
* Fixed misc. instances of ERR_NOSUCHNICK instead of channel numericsGravatar B00mX0r2017-12-221-1/+1
| | | | Per #1122
* Extract RFC modes from the core to core_channel and core_user.Gravatar Peter Powell2017-12-101-0/+2
|
* Add the override keyword in places that it is missing.Gravatar Peter Powell2017-11-211-3/+3
| | | | GCCs warnings for this are much better than Clangs.
* Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-171-1/+1
|
* Merge tag 'v2.0.25' into master.Gravatar Peter Powell2017-11-121-4/+10
|\
| * Improve (synchronize) the notices in m_timedbansGravatar genius30002017-11-061-4/+10
| | | | | | | | | | * Send to remote servers upon setting * Send to halfop if available upon expiry
* | Merge the latest changes from insp20 into master.Gravatar Peter Powell2017-10-121-2/+2
|\|
| * Fix mistakenly hardcoding the halfop prefix char in timedbans.Gravatar Peter Powell2017-08-251-1/+1
| | | | | | | | | | | | This will almost always be % but if the server admin is using the customprefix module and remaps it to something else messages will not be sent out correctly.