aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_shun.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-11-011-3/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-10-301-3/+2
* | 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-4/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-09-271-23/+46
|\|
| * Add a shun option for cleaning problematic allowed commands.Gravatar Sadie Powell2020-09-271-9/+23
| * Make shun block client-only tags by default.Gravatar Sadie Powell2020-09-271-0/+14
| * Refactor the shun module slightly.Gravatar Sadie Powell2020-09-271-17/+14
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-7/+13
|\|
| * Fix shuns not being applied correctly.Gravatar Sadie Powell2020-05-051-8/+16
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-1/+1
* | Replace the flags_required field with an enum.Gravatar Sadie Powell2020-04-141-1/+1
* | Alow modules to specify multiple syntax lines.Gravatar Sadie Powell2020-04-141-1/+2
* | 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-04-091-24/+7
|\|
| * Add support for the servers/ignore-shun privilege.Gravatar Sadie Powell2020-03-291-12/+6
| * Include ADMIN and OPER in the default for <shun:enabledcmds>.Gravatar Sadie Powell2020-03-291-1/+1
| * Clean up the parsing logic for <shun:enabledcmds>.Gravatar Sadie Powell2020-03-291-11/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-191-1/+1
|\|
| * Generalise XLine stats numerics using RPL_STATS from aircd.Gravatar Sadie Powell2020-02-181-1/+1
* | Move FindNick to UserManager.Gravatar Sadie Powell2020-02-091-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-2/+13
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-2/+13
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-3/+3
|\|
| * Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-281-3/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-6/+5
|\|
| * Start using DurationString() in X-line additions and•••a few other modules where it fits better than just showing seconds. Gravatar Matt Schatz2019-02-181-5/+4
| * Various text improvements: consistency, syntax, help and doc updates/fixes.Gravatar Robby2019-02-181-1/+1
* | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-071-4/+4
* | ModuleManager: remove fakederef.Gravatar Sadie Powell2019-02-071-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-051-4/+6
|\|
| * Add the reason to xline removal notices. (#1545)•••Show the reason in manual xline removal SNOTICEs, just like expiry SNOTICEs do. This modifies XLineManager::DelLine() to require another string reference passed to it. Requested by @Robby-.Gravatar Matt Schatz2019-01-241-4/+6
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-10/+10
|/
* Improve X-line text consistency.•••- Change any "-Line", ":Line", or "*line" to "-line" throughout the X-line code, comments, and documentation. - Add periods to the end of some notices. - Correct a typo in the Q-line code comments. - Update the filter module documentation (shun addition). Co-authored-by: Robby <robby@chatbelgie.be> Gravatar Matt Schatz2019-01-091-2/+2
* Only parse valid durations, don't treat invalid multipliers as seconds (#1538)Gravatar linuxdaemon2018-12-211-1/+5
* Store durations as unsigned long not long in XLine and m_filter.Gravatar Peter Powell2018-12-131-1/+1
* Remove the original line parameter of On{Pre,Post}Command.•••In the brave new world of message tags and alternate wire formats this is no longer something that is appropriate to expose. In reality it was only ever used by m_alias which now reconstitutes the command name and parameters into a RFC 1459-style message for whatever it needs to do. Gravatar Peter Powell2018-08-101-1/+1
* Use CommandBase::Params instead of std::vector<std::string>.•••This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. Gravatar Peter Powell2018-07-261-3/+3
* Merge tag 'v2.0.26' into master.Gravatar Peter Powell2018-04-221-1/+1
|\
| * Fix blank instead of empty PART message when a user is shunnedGravatar B00mX0r2018-04-111-1/+1
* | Move OnStats from the core to a cross-module event.•••Some core code still exists in the XLine system but this will be replaced when the XLine system is replaced later. Gravatar Peter Powell2018-04-081-2/+5
* | Add SHUN as a /filter action•••This resolves #483 Gravatar B00mX0r2017-12-211-39/+1
* | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs. Gravatar Peter Powell2017-11-211-7/+7
* | Merge tag 'v2.0.25' into master.Gravatar Peter Powell2017-11-121-3/+7
|\|
| * Work around removing shuns on nicks when the nick is online.Gravatar Peter Powell2017-11-091-2/+6
* | Switch from std::stringstream to irc::spacesepstream.•••The latter is more suited to the things we have previously been using std::stringstream for. Gravatar Peter Powell2017-10-191-2/+2
* | Add CXX11_OVERRIDE to overridden members that lack it.•••This fixes a ton of warnings when building on compilers that default to C++11 or newer. Gravatar Peter Powell2017-07-121-1/+1
* | m_shun Add support for shunning CIDR masks•••Issue #1195 Gravatar Attila Molnar2016-09-121-0/+3