aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_muteban.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-2/+1
|
* Allow mutating the status message type in OnUserPre(Tag)Message.Gravatar Sadie Powell2024-05-061-2/+2
|
* Respect notifyuser in the muteban part handler.Gravatar Sadie Powell2023-07-061-4/+20
|
* If a user is (mute)banned then also hide their part message.Gravatar Sadie Powell2023-07-061-0/+9
|
* Make Numerics::CannotSendTo properly aware of extbans.Gravatar Sadie Powell2023-06-221-1/+1
|
* Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-1/+1
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-2/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-2/+1
| |
| * Update module descriptions.Gravatar Sadie Powell2021-12-301-1/+1
| |
* | Move numeric helper classes to their own header.Gravatar Sadie Powell2022-06-261-0/+1
| |
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-2/+2
| |
* | Update module descriptions.Gravatar Sadie Powell2021-12-151-1/+1
| |
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-141-2/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-05-141-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-04-271-1/+1
|\|
| * Update the module descriptions.Gravatar Sadie Powell2021-04-211-1/+1
| |
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-1/+1
| |
* | Add first class support for extbans.Gravatar Sadie Powell2020-05-071-9/+4
| | | | | | | | | | This replaces the previous support which was pretty much a giant hack and was not synchronised between servers.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-2/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-2/+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/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-091-1/+1
|\|
| * Add the Numerics::CannotSendTo class and switch stuff to use it.Gravatar Sadie Powell2020-04-041-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-0/+5
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-0/+5
| |
* | Move ISupport logic out of the core and into core_info.Gravatar Sadie Powell2020-01-051-1/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-4/+22
|\|
| * Some more text fixes and improvements (#1618).Gravatar Robby2019-04-281-1/+1
| |
| * Remove CXX11_OVERRIDE from some non-overrides.Gravatar Peter Powell2019-04-181-1/+1
| |
| * Update trivially-modifiable modules to handle tag messages.Gravatar Peter Powell2019-04-161-3/+21
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-02-051-1/+9
|\|
| * Read the muteban config in ReadConfig().Gravatar Peter Powell2019-01-281-1/+9
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-3/+3
|/
* Fix aliases that resolve to messages echoing with echo-message.Gravatar Peter Powell2018-08-151-1/+1
| | | | Fixes #1459.
* Optionally do not notify users if their messages are blocked by certain ↵Gravatar Robby2018-04-201-0/+7
| | | | | modules (#1134). Closes #711.
* Rework message handling.Gravatar Peter Powell2018-01-061-3/+3
| | | | | | | | | | | | | - Move all message-related types to their own header to make moving them to a cross-module events easier. - Rename OnUserMessage to OnUserPostMessage. - Rename OnText to OnUserMessage. - Replace the dest, target_type, and status parameters with the MessageTarget class. - Replace the text, exempt_list, and msgtype parameters with the MessageDetails struct. - Add echooriginal and originaltext to the MessageDetails struct to allow spam filtering to not be broken by cap echo-message.
* Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵Gravatar Attila Molnar2016-02-251-1/+1
| | | | parameters
* Use WriteNumeric() everywhere we send numerics and include the user's nick ↵Gravatar Adam2013-11-121-1/+1
| | | | automatically
* Automatically attach modules to eventsGravatar attilamolnar2013-08-041-6/+0
|
* Remove $Core and $Mod* comments apart from $ModDep.Gravatar Peter Powell2013-07-041-2/+0
|
* Remove OnUserPreNotice and OnUserNotice hooks, add MessageType argument to ↵Gravatar attilamolnar2013-05-201-7/+2
| | | | | | OnUserMessage and OnUserPreMessage All modules (except m_nonotice) that perform filtering on messages have common logic for handling PRIVMSGs and NOTICEs and most of them run the exact same code in both cases
* Tidy up keywords on module methods.Gravatar Peter Powell2013-05-151-5/+5
| | | | | - Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it.
* Convert ISUPPORT to use a map instead of a string.Gravatar Peter Powell2013-04-111-2/+2
|
* Whitespace and empty destructor removal, minor coding style changesGravatar attilamolnar2013-04-011-7/+0
|
* Dynamically determine the size of the eventlist[] passed to Attach()Gravatar attilamolnar2012-12-021-1/+1
| | | | m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove
* Attach to events and register services in init()Gravatar attilamolnar2012-12-021-1/+2
|
* Replace copyright headers with headers granting specific authors copyrightGravatar Robby-2012-04-191-8/+15
|