aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_repeat.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2026-06-051-1/+1
* Add long duration template variables to messageflood and repeat.Gravatar Sadie Powell2025-08-311-6/+7
* Update copyright headers.Gravatar InspIRCd Robot2025-02-281-1/+2
* Fix repeat compatibility with v3.•••Co-authored-by: iwalkalone <iwalkalone@chathispano.com> Closes #2145. Gravatar Sadie Powell2025-01-091-1/+1
* Add %channel% to the messageflood and repeat module templates.Gravatar Sadie Powell2024-09-281-0/+1
* Make the messageflood and repeat messages a bit better.Gravatar Sadie Powell2024-09-281-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2024-07-141-1/+1
* Use auto when extracting the internal type of a message target.Gravatar Sadie Powell2024-07-131-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-6/+4
* Allow mutating the status message type in OnUserPre(Tag)Message.Gravatar Sadie Powell2024-05-061-1/+1
* Retain the "real" username properly like we do for hostnames.•••This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. Gravatar Sadie Powell2023-06-291-1/+1
* Rename duration to timeutils and relocate InspIRCd::TimeString.Gravatar Sadie Powell2023-05-101-1/+1
* Add more action types to the repeat module.Gravatar Sadie Powell2023-02-051-39/+138
* Refactor reading the repeat module config.Gravatar Sadie Powell2023-02-031-18/+8
* Move CheckExemption::Call to CheckExemption::EventProvider.•••Now FirstResult not a macro there's no need for this to be a free function. Gravatar Sadie Powell2023-01-251-1/+1
* Replace getInt/getUInt/getFloat with type safe templated functions.Gravatar Sadie Powell2023-01-251-4/+4
* Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-231-9/+9
* Move duration functions to their own header.Gravatar Sadie Powell2023-01-231-2/+3
* Replace ModeAction with bool.•••This enum is functionally the same as bool but with weird semantics. Gravatar Sadie Powell2023-01-221-5/+5
* Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-1/+1
* Move extension types to their own header to speed up build times.Gravatar Sadie Powell2022-12-191-0/+1
* Yet more stylistic fixes.Gravatar Sadie Powell2022-12-011-1/+5
* Fix some warnings noticed by the readability-* clang-tidy checkers.Gravatar Sadie Powell2022-09-031-1/+1
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-271-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-08-251-1/+1
* | Move numeric helper classes to their own header.Gravatar Sadie Powell2022-06-261-0/+1
* | Modernize the syntax of various templates.Gravatar Sadie Powell2022-06-231-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-06-221-1/+1
|\|
| * Fix the parameter documentation for the repeat mode.Gravatar Sadie Powell2022-06-151-1/+1
* | Allow templating of the repeat module kick message.Gravatar Sadie Powell2022-06-151-7/+8
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-6/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-01-031-1/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-12-301-1/+2
* | Make all extensibles use kebab-case for names where possible.Gravatar Sadie Powell2021-12-261-1/+1
* | Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-12-141-1/+1
|\|
| * If a user has a unique username then include it in bans.Gravatar Sadie Powell2021-12-141-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-11-241-2/+5
|\|
| * Use a mode reference in the repeat module.Gravatar Sadie Powell2021-11-161-2/+5
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-3/+3
* | Mark more mode classes as final.Gravatar Sadie Powell2021-10-011-1/+1
* | Mark all mode classes as final.Gravatar Sadie Powell2021-10-011-1/+2
* | Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-09-231-0/+3
|\|
| * Add the channels/ignore-repeat priv to exempt opers from +E.Gravatar David Schultz2021-09-211-0/+3
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-21/+19
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-2/+2
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-1/+1
* | Add a new map-based method for building link data.•••The new link data is not currently used but will be in the near future. Gravatar Sadie Powell2021-05-101-8/+9
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-3/+2