aboutsummaryrefslogtreecommitdiff
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
* Slim down the globally included files.Gravatar Sadie Powell2022-04-301-0/+4
|
* Format enums with an underlying type like classes.Gravatar Sadie Powell2022-04-303-4/+8
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-2943-49/+50
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-04-2843-49/+50
| |
| * Update module descriptions.Gravatar Sadie Powell2022-04-281-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-264-6/+34
|\|
| * Implement support for the IRCv3 bot tag.Gravatar Sadie Powell2022-04-261-2/+6
| |
| * Allow building with license-incompatible modules if manually enabled.Gravatar Sadie Powell2022-04-242-3/+3
| | | | | | | | | | | | [skip alpine ci] [skip macos ci] [skip ubuntu ci]
| * Respect the invite announcement level when announcing knocks.Gravatar Sadie Powell2022-04-231-2/+30
| | | | | | | | Closes #1976.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-212-3/+54
|\|
| * Add support for automatically expiring the override user mode.Gravatar Sadie Powell2022-04-211-1/+43
| |
| * Also send ACCOUNT to the user who is authenticating.Gravatar Sadie Powell2022-04-181-1/+1
| | | | | | | | Closes #1974.
* | Remove ValidateParam and rename CanonicalizeParam.Gravatar Sadie Powell2022-04-174-4/+6
| | | | | | | | | | | | | | There's basically no safe way to handle a malformed list mode sent by a remote server without causing a desync. Its probably for the best if we just only apply validation to locally added list modes entries.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-1614-34/+21
|\|
| * Use FindNearestPrefixMode instead of looking for the halfop mode.Gravatar Sadie Powell2022-04-121-4/+4
| |
| * Add a numeric builder for the ERR_CHANOPRIVSNEEDED numeric.Gravatar Sadie Powell2022-04-125-9/+6
| | | | | | | | This should make privilege errors more consistent.
| * Use ERR_RESTRICTED when an action can't be done even with privileges.Gravatar Sadie Powell2022-04-123-3/+3
| |
| * Use ERR_UNAVAILRESOURCE for things that should be retried later.Gravatar Sadie Powell2022-04-123-14/+1
| | | | | | | | Also move it to the global numerics header to avoid duplication.
| * Fix using notices instead of the appropriate numerics in rmode.Gravatar Sadie Powell2022-04-121-7/+9
| |
| * Add a method to ConfigTag to help with retrieving a single character.Gravatar Sadie Powell2022-04-102-2/+2
| |
| * GnuTLS DH parameters are optional from 3.6.0+ not 3.5.6+.Gravatar Sadie Powell2022-04-071-1/+1
| |
* | Add ListModeBase::CanonicalizeParam, fix cleaning extban masks.Gravatar Sadie Powell2022-04-165-6/+28
| |
* | Add a class that wraps a dynamic reference to the extban manager.Gravatar Sadie Powell2022-04-161-2/+2
| |
* | Make the parameter field of ValidateParam const.Gravatar Sadie Powell2022-04-162-8/+8
| |
* | Remove FPART, force REMOVE to always use the new syntax.Gravatar Sadie Powell2022-04-161-77/+21
| | | | | | | | | | | | | | | | FPART was deprecated in v3 when the parameters for REMOVE were switched. This does not need any compat layer changes as v3 always forwarded FPART as REMOVE.
* | Fix serialising the kicknorejoin link data.Gravatar Sadie Powell2022-04-071-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-057-29/+35
|\|
| * Use consistent xline messages locallyGravatar Sadie Powell2022-04-053-14/+23
| | | | | | | | | | | | | | | | | | | | | | For connectban these messages would have previously been duplicated to other servers until this was fixed earlier today. For dnsbl and rline they would have just differed on the local to a remote. As of the previous commit the module name is included in the setter so there is no need to vary the snotice. This makes things more consistent for server operators and allows scripts to parse the messages.
| * Notify opers about the connectban zline being added before applying it.Gravatar Sadie Powell2022-04-051-1/+1
| | | | | | | | This matches behaviour elsewhere.
| * Include the module name in the setter for server-added xlines.Gravatar Sadie Powell2022-04-053-5/+5
| |
| * Fix some more grammar errors in xline messages.Gravatar Sadie Powell2022-04-051-4/+1
| |
| * Increase the default connectban ban duration from 10m to 6h.Gravatar Sadie Powell2022-04-051-1/+1
| | | | | | | | 10m is borderline useless for preventing bot floods.
| * Default connectban cidr ranges to the values specified in <cidr>.Gravatar Sadie Powell2022-04-051-2/+2
| |
| * Fix the cban and connectban modules sending out duplicate snotices.Gravatar Sadie Powell2022-04-052-4/+4
| |
| * Fix the grammar of various xline messages.Gravatar Sadie Powell2022-04-055-10/+10
| |
* | Use a consistent message format for end of list numerics.Gravatar Sadie Powell2022-04-015-5/+5
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-011-3/+8
|\|
| * Add the channels/ignore-chanfilter priv to the chanfilter module.Gravatar Sadie Powell2022-03-281-3/+8
| | | | | | | | Closes #1971.
* | Hide disabled commands from /COMMANDS.Gravatar Sadie Powell2022-03-291-1/+18
| |
* | Pack the mode set more efficiently and add support for numeric modes.Gravatar Sadie Powell2022-03-271-2/+2
| |
* | Add a typedef for the mode status bitset.Gravatar Sadie Powell2022-03-271-9/+6
| |
* | Fix unsigned/const keyword ordering, remove unnecessary consts.Gravatar Sadie Powell2022-03-271-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-03-278-10/+40
|\|
| * Add support for matching against geolocation data with WHO.Gravatar Sadie Powell2022-03-251-1/+14
| | | | | | | | Closes #1969.
| * Add support for blocking invites to the commonchans module.Gravatar Sadie Powell2022-03-231-4/+28
| |
| * Rename <connectban:duration> to <connectban:banduration>.Gravatar Sadie Powell2022-03-221-1/+1
| |
| * Fix real name formatting bleeding into IRC messages.Gravatar Sadie Powell2022-03-213-3/+3
| |
| * m_deaf: Correct default return in HandleUser().Gravatar Matt Schatz2022-03-211-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-03-114-21/+30
|\|
| * Use UCHAR_MAX instead of raw sizes in channames.Gravatar Sadie Powell2022-03-111-4/+4
| | | | | | | | This matches other code that does similar things.