aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ircv3_echomessage.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2026-06-051-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-6/+6
|
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+1
|
* Allow mutating the status message type in OnUserPre(Tag)Message.Gravatar Sadie Powell2024-05-061-2/+4
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-10-131-4/+37
|\|
| * Add the inspircd.org/echo tag to echo message responses.Gravatar Sadie Powell2022-10-121-4/+37
| |
* | Make clientprotocol{msg,event} and numericbuilder non-default headers.Gravatar Sadie Powell2022-06-261-0/+1
| |
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-2/+2
| |
* | Fix a bunch of cases where module types were not marked as final.Gravatar Sadie Powell2021-11-281-1/+1
| |
* | Pascalize Cap::set and rename Cap::get to IsEnabled.Gravatar Sadie Powell2020-07-201-2/+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/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-041-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-311-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-3/+4
|\|
| * Fix STATUSMSG tag messages not including the status in the target.Gravatar Sadie Powell2020-01-161-1/+1
| |
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-2/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-011-1/+1
|\|
| * Update my name and email address.Gravatar Sadie Powell2019-12-311-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-35/+47
|\|
| * Replace large if/else blocks for target.type with switches (#1668).Gravatar linuxdaemon2019-06-241-35/+47
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-2/+45
|\|
| * Implement support for IRCv3 client-to-client tags.Gravatar Peter Powell2019-02-191-2/+45
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-3/+3
|/
* m_ircv3_echomessage: only echo the tags which were actually used.Gravatar Peter Powell2019-01-101-3/+4
|
* Fix aliases that resolve to messages echoing with echo-message.Gravatar Peter Powell2018-08-151-3/+3
| | | | Fixes #1459.
* Replace all references to IRCv3.2 with IRCv3.Gravatar Peter Powell2018-08-131-1/+1
| | | | IRCv3 no longer does versioned releases.
* Implement IRCv3 message tag support.Gravatar Peter Powell2018-08-131-11/+13
| | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com>
* Call OnUserMessageBlocked when a PRIVMSG or a NOTICE is blocked.Gravatar Peter Powell2018-04-161-0/+7
| | | | | | This is necessary to allow m_ircv3_echomessage to pretend that a message was echoed successfully. This is useful as it doesn't let spammers know that their message was blocked.
* Rework message handling.Gravatar Peter Powell2018-01-061-11/+11
| | | | | | | | | | | | | - 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.
* Add m_ircv3_echomessage which implements the IRCv3.2 echo-message extensionGravatar Attila Molnar2015-12-061-0/+70