aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_cloak_user.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2026-06-051-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2025-03-281-1/+1
|
* Add a formatting overload of the ModuleException constructor.Gravatar Sadie Powell2025-03-181-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+1
|
* Update module descriptions.Gravatar Sadie Powell2024-03-011-1/+1
|
* Allow changing the case of cloak values in cloak_user.Gravatar Sadie Powell2024-02-191-2/+38
|
* Add the fingerprint cloak method to the cloak_user module.Gravatar Sadie Powell2024-01-131-2/+45
|
* Move checks for whether a user is cloakable to {Get,Reset}Cloaks.Gravatar Sadie Powell2023-07-171-10/+4
|
* Fix cloaking users too early in cloak_user.Gravatar Sadie Powell2023-07-171-4/+10
|
* Retain the "real" username properly like we do for hostnames.Gravatar Sadie Powell2023-06-291-2/+2
| | | | | | | | | | | | | | 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.
* Reorder some class methods in cloak_user to fix a compiler warning.Gravatar Sadie Powell2023-06-291-1/+1
|
* Refactor the cloak_user module for upcoming username changes.Gravatar Sadie Powell2023-06-291-19/+19
|
* Replace <cloak:sanitize> with <cloak:invalidchar>.Gravatar Sadie Powell2023-06-201-10/+58
| | | | | This adds support for truncating values e.g. with the nick foo|afk a user will receive a cloak of "foo".
* Misc cleanup of cloak_user.Gravatar Sadie Powell2023-06-201-5/+6
|
* Update the description of the cloak_user module.Gravatar Sadie Powell2023-06-201-1/+1
|
* Add support for cloaking users by their ident/username.Gravatar Sadie Powell2023-06-201-0/+26
|
* Merge the cloak_account and cloak_nick modules.Gravatar Sadie Powell2023-06-201-0/+232
These modules are 90% identical and were only separate because before commit 78cd3898f5 we could not conditionally regenerate cloaks.