aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
* Rename duration to timeutils and relocate InspIRCd::TimeString.Gravatar Sadie Powell2023-05-1029-55/+60
|
* Show more details about unactivated/expired client certificates.Gravatar Sadie Powell2023-05-103-11/+29
|
* Fix some uses of NULL that have snuck back in during a merge.Gravatar Sadie Powell2023-05-071-1/+1
|
* Use GetPrintable in more places in the codepage module.Gravatar Sadie Powell2023-05-071-3/+2
|
* Fix narrowing unsigned long to uint32_t in the codepage module.Gravatar Sadie Powell2023-05-071-8/+8
|
* Improve the config error messages in the codepage module.Gravatar Sadie Powell2023-05-071-4/+12
|
* Tighten up the rules for nicknames to match the Modern IRC spec.Gravatar Sadie Powell2023-05-071-8/+33
|
* Allow customising who can receive the joinflood close notification.Gravatar Sadie Powell2023-05-071-1/+5
| | | | Closes #1747.
* Remove the now-obsolete hostchange module.Gravatar Sadie Powell2023-05-022-270/+0
| | | | Closes #2025.
* Add the cloak_static module to cloak using a fixed value.Gravatar Sadie Powell2023-05-021-0/+84
|
* Add the cloak_nick module to cloak based on a nickname.Gravatar Sadie Powell2023-05-021-0/+143
|
* Add the cloak_account module to cloak based on an account name/id.Gravatar Sadie Powell2023-05-021-0/+191
|
* Add <cloak:class> to limit cloaks to a specific connect class.Gravatar Sadie Powell2023-05-022-4/+4
|
* Remove a renamed module that snuck back in during a merge.Gravatar Sadie Powell2023-04-281-109/+0
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-2816-16/+124
|\
| * Update copyright headers.Gravatar InspIRCd Robot2023-04-2817-18/+17
| |
* | Fix narrowing of the config in the messageflood module.Gravatar Sadie Powell2023-04-271-3/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-276-21/+176
|\|
| * Fix an off by one error in the rmode module.Gravatar Sadie Powell2023-04-211-1/+1
| |
| * Warn users when their client certificate is about to expire.Gravatar Sadie Powell2023-03-011-0/+15
| | | | | | | | Closes #1938.
| * Add client cert activation/expiration times to the ssl_cert class.Gravatar Sadie Powell2023-03-013-10/+72
| |
| * Fix destroying duplicate channels when the casemapping changes.Gravatar Sadie Powell2023-03-011-0/+53
| |
| * Fix renicking duplicate users when the casemapping changes.Gravatar Sadie Powell2023-03-011-11/+36
| |
* | Allow using rmode on a prefix char and mode name.Gravatar Sadie Powell2023-04-211-3/+16
| |
* | Allow also using a prefix chat in autoop and exemptchanops.Gravatar Sadie Powell2023-04-212-2/+12
| |
* | Replace <sqlauth:allowpattern> with <sqlexemption>.Gravatar Sadie Powell2023-04-201-4/+15
| | | | | | | | Partially implements #2030.
* | Merge <ldapauth:allowpattern> and <ldapwhitelist>.Gravatar Sadie Powell2023-04-201-28/+22
| | | | | | | | Closes #1478.
* | <link:sctp> is for outgoing connections not incoming connections.Gravatar Sadie Powell2023-04-201-1/+1
| |
* | Allow limiting chanhistory only by the number of lines or duration.Gravatar Sadie Powell2023-04-201-4/+4
| |
* | Fix parsing <chanhistory:maxduration>.Gravatar Sadie Powell2023-04-201-1/+1
| | | | | | | | Closes #2032.
* | Marginally improve the performance of JSON logging.Gravatar Sadie Powell2023-03-241-4/+4
| |
* | The services module does not require an account API instance.Gravatar Sadie Powell2023-03-241-3/+0
| |
* | Allow modules to provide an error for when a class doesn't match.Gravatar Sadie Powell2023-03-246-6/+6
| |
* | Update the module descriptions.Gravatar Sadie Powell2023-02-281-1/+1
| |
* | Remove GetSID, rename sid to ServerId.Gravatar Sadie Powell2023-02-2810-11/+26
| |
* | Remove an unnecessary function call in the pbkdf2 module.Gravatar Sadie Powell2023-02-281-6/+1
| |
* | Refactor the password checking API.Gravatar Sadie Powell2023-02-284-12/+12
| | | | | | | | | | | | | | | | | | | | - Rename from (On)PassCompare to (On)CheckPassword. - Fix the order of the arguments to be password, hash, value. This makes more sense than what it was previously. - Fix the code documentation to not be complete nonsense and not reference ancient outdated APIs.
* | Fix some unnecessary boolean explicit checks.Gravatar Sadie Powell2023-02-282-3/+3
| |
* | Sort opers alphabetically in `/STATS P`.Gravatar Sadie Powell2023-02-271-0/+6
| |
* | Allow differentiating non-oper helpers from opers.Gravatar Sadie Powell2023-02-271-3/+6
| |
* | Refer to users with +h (helpop) as helpers not (help)opers.Gravatar Sadie Powell2023-02-271-16/+16
| |
* | Allow user mode +h (helpop) to override +H (hideoper) in /STATS P.Gravatar Sadie Powell2023-02-271-3/+15
| | | | | | | | | | | | | | Now we include +h users in the output inclusion doesn't inherently mean the user is an oper. Closes #1212.
* | Use the stats row count instead of counting opers manually.Gravatar Sadie Powell2023-02-271-3/+1
| |
* | Allow non-opers with +h to show in `/STATS P`.Gravatar Sadie Powell2023-02-271-2/+66
| |
* | Rename the helpop module to help.Gravatar Sadie Powell2023-02-271-16/+16
| |
* | Split the help mode out from the helpop module.Gravatar Sadie Powell2023-02-272-12/+46
| |
* | Fix missing override keyword.Gravatar Sadie Powell2023-02-261-1/+1
| |
* | Allow opting-out of cloaking by connect class.Gravatar Sadie Powell2023-02-231-0/+10
| |
* | Clean up the cloak_md5 module slightly.Gravatar Sadie Powell2023-02-221-36/+27
| |
* | Improve the log messages when cloaking users.Gravatar Sadie Powell2023-02-201-3/+10
| |