mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-03-09 17:11:00 +00:00
[AB-xxx] adding more documentation in the moderation area
removing not used feature modes from configuration
This commit is contained in:
@@ -33,22 +33,10 @@ abstracto.postTargets.unBanLog.name=unBanLog
|
|||||||
abstracto.postTargets.muteLog.name=muteLog
|
abstracto.postTargets.muteLog.name=muteLog
|
||||||
abstracto.postTargets.decayLog.name=decayLog
|
abstracto.postTargets.decayLog.name=decayLog
|
||||||
|
|
||||||
abstracto.featureModes.banCommandLogging.featureName=moderation
|
|
||||||
abstracto.featureModes.banCommandLogging.mode=banCommandLogging
|
|
||||||
abstracto.featureModes.banCommandLogging.enabled=true
|
|
||||||
|
|
||||||
abstracto.featureModes.unBanCommandLogging.featureName=moderation
|
|
||||||
abstracto.featureModes.unBanCommandLogging.mode=unBanCommandLogging
|
|
||||||
abstracto.featureModes.unBanCommandLogging.enabled=true
|
|
||||||
|
|
||||||
abstracto.featureModes.warnDecayLogging.featureName=warnings
|
abstracto.featureModes.warnDecayLogging.featureName=warnings
|
||||||
abstracto.featureModes.warnDecayLogging.mode=warnDecayLogging
|
abstracto.featureModes.warnDecayLogging.mode=warnDecayLogging
|
||||||
abstracto.featureModes.warnDecayLogging.enabled=true
|
abstracto.featureModes.warnDecayLogging.enabled=true
|
||||||
|
|
||||||
abstracto.featureModes.infractionReporting.featureName=infractions
|
|
||||||
abstracto.featureModes.infractionReporting.mode=infractionReporting
|
|
||||||
abstracto.featureModes.infractionReporting.enabled=true
|
|
||||||
|
|
||||||
abstracto.featureModes.anonymousReportReactions.featureName=reportReactions
|
abstracto.featureModes.anonymousReportReactions.featureName=reportReactions
|
||||||
abstracto.featureModes.anonymousReportReactions.mode=anonymousReportReactions
|
abstracto.featureModes.anonymousReportReactions.mode=anonymousReportReactions
|
||||||
abstracto.featureModes.anonymousReportReactions.enabled=false
|
abstracto.featureModes.anonymousReportReactions.enabled=false
|
||||||
|
|||||||
@@ -259,6 +259,7 @@ An example of a feature mode is mod mail logging: If the feature mode `log` of m
|
|||||||
If the feature mode is enabled, the messages from the thread are logged in the respective post target and the command will be available.
|
If the feature mode is enabled, the messages from the thread are logged in the respective post target and the command will be available.
|
||||||
|
|
||||||
.What is a profanity group?
|
.What is a profanity group?
|
||||||
|
[[profanitygroups,Profanity groups]]
|
||||||
A profanity group is just a container for various regexes. They are grouped together in order to be identified together and kept organized.
|
A profanity group is just a container for various regexes. They are grouped together in order to be identified together and kept organized.
|
||||||
Each profanity regex within that group has an additional identifier. For example a profanity group can be used to detect a particular word, but there are different profanities which would detect various possibilities for that one word. This helps reduce the complexity of individual regexes.
|
Each profanity regex within that group has an additional identifier. For example a profanity group can be used to detect a particular word, but there are different profanities which would detect various possibilities for that one word. This helps reduce the complexity of individual regexes.
|
||||||
|
|
||||||
|
|||||||
@@ -98,21 +98,26 @@ Show the currently configured experience roles in the server::
|
|||||||
Toggle the level up notification::
|
Toggle the level up notification::
|
||||||
* Usage: `expLevelUpNotification <newValue>`
|
* Usage: `expLevelUpNotification <newValue>`
|
||||||
* Slash command: `experience explevelupnotification`
|
* Slash command: `experience explevelupnotification`
|
||||||
* Description: Toggles for the executing user, if they receive level up notifications. Only `true` really enables the notification, any other value disables the notification. This command requires the feature mode `levelUpNotification`.
|
* Description: Toggles for the executing user, if they receive level up notifications. Only `true` really enables the notification, any other value disables the notification.
|
||||||
|
* Mode Restriction: This command is only available when the feature mode `levelUpNotification` is enabled.
|
||||||
|
|
||||||
Add a level action::
|
Add a level action::
|
||||||
* Usage: `addLevelAction <action> <level> <parameter> [member]`
|
* Usage: `addLevelAction <action> <level> <parameter> [member]`
|
||||||
* Slash command: `experienceconfig levelAction add`
|
* Slash command: `experienceconfig levelAction add`
|
||||||
* Description: Adds an `action` to be executed at `level` with the given `parameter`. If a `member` is provided, the action is restricted to be executed for only this member. The parameters `action` uses auto complete to show the currently available actions. The combination of `action`, `level` and `member` (if provided), is considered unique. If such a combination already exists, an error is shown. Each action then requires a different `parameter` passed. The actions `add_member_to_channel_above_level` and `remove_member_from_channel_above_level` require a channel mention/name/id, and `add_role_above_level` and `remove_role_above_level` require a role mention/name/id.
|
* Description: Adds an `action` to be executed at `level` with the given `parameter`. If a `member` is provided, the action is restricted to be executed for only this member. The parameters `action` uses auto complete to show the currently available actions. The combination of `action`, `level` and `member` (if provided), is considered unique. If such a combination already exists, an error is shown. Each action then requires a different `parameter` passed. The actions `add_member_to_channel_above_level` and `remove_member_from_channel_above_level` require a channel mention/name/id, and `add_role_above_level` and `remove_role_above_level` require a role mention/name/id.
|
||||||
|
* Mode Restriction: This command is only available when the feature mode `levelAction` is enabled.
|
||||||
|
|
||||||
Viewing the current configured level actions::
|
Viewing the current configured level actions::
|
||||||
* Usage: `showLevelActions`
|
* Usage: `showLevelActions`
|
||||||
* Slash command: `levelAction show`
|
* Slash command: `levelAction show`
|
||||||
|
* Description: Shows the currently configured level actions, this includes the level they are active at, the type of action and if
|
||||||
|
* Mode Restriction: This command is only available when the feature mode `levelAction` is enabled.
|
||||||
|
|
||||||
Removing a level action::
|
Removing a level action::
|
||||||
* Usage: `removeLevelAction <action> <level> [member]`
|
* Usage: `removeLevelAction <action> <level> [member]`
|
||||||
* Slash command: `experienceconfig levelAction remove`
|
* Slash command: `experienceconfig levelAction remove`
|
||||||
* Description: Removes an action to be executed at a certain level. Such an action is identified by a combination of `action`, `level` and optionally `member`. If no identifiable combination is found, an error is shown.
|
* Description: Removes an action to be executed at a certain level. Such an action is identified by a combination of `action`, `level` and optionally `member`. If no identifiable combination is found, an error is shown.
|
||||||
|
* Mode Restriction: This command is only available when the feature mode `levelAction` is enabled.
|
||||||
|
|
||||||
==== Level actions
|
==== Level actions
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
Feature key: `moderation`
|
Feature key: `moderation`
|
||||||
|
|
||||||
|
This feature contains various generic utilities like kicking and banning.
|
||||||
|
|
||||||
==== Post targets
|
==== Post targets
|
||||||
`banLog`:: target of the message notifying about bans, both via command and via UI. Will still ban if not setup.
|
`banLog`:: target of the message notifying about bans, both via command and via UI. Will still ban if not setup.
|
||||||
`unBanLog`:: target of the message notifying about un-bans, both via command and via UI. Will still unban if not setup.
|
`unBanLog`:: target of the message notifying about un-bans, both via command and via UI. Will still unban if not setup.
|
||||||
@@ -9,38 +11,41 @@ Feature key: `moderation`
|
|||||||
|
|
||||||
==== Commands
|
==== Commands
|
||||||
Ban a member::
|
Ban a member::
|
||||||
* Usage: `ban <member> <reason>`
|
* Usage: `ban <user> <reason> [deletionDuration]`
|
||||||
|
* Slash command: `moderation ban`
|
||||||
* Description:
|
* Description:
|
||||||
Bans `member` with the given `reason`. This sends a logging message to the `banLog` post target.
|
Bans `user` with the given `reason`. This sends a logging message to the `banLog` post target.
|
||||||
Banning this way does not delete old messages of the member on the server.
|
Per default no messages are deleted, you can pass a duration in the parameter `deletionDuration`
|
||||||
It is also possible to ban users via ID, if they are not part of the server anymore.
|
It is also possible to ban users via ID, if they are not part of the server anymore. When using the slash command, the parameter `user_user` enables you to mention the user, and `user_string` serves as the input for the user ID.
|
||||||
* Example: `ban @Member bad` in order to ban `Member` with the reason `bad` (the @Member is a user mention)
|
* Example: `ban @Member bad` in order to ban `Member` with the reason `banned` (the @Member is a user mention)
|
||||||
* Required bot permission: `BAN_MEMBERS`
|
* Required bot permission: `BAN_MEMBERS`
|
||||||
Unban a user::
|
Unban a user::
|
||||||
* Usage: `unBan <userId>`
|
* Usage: `unBan <userId>`
|
||||||
|
* Slash command: `moderation unBan`
|
||||||
* Description: Un-bans the given user with the id `userId`.
|
* Description: Un-bans the given user with the id `userId`.
|
||||||
* Required bot permission: `BAN_MEMBERS`
|
* Required bot permission: `BAN_MEMBERS`
|
||||||
Kick a member::
|
Kick a member::
|
||||||
* Usage: `kick <member> [reason]`
|
* Usage: `kick <member> [reason]`
|
||||||
|
* Slash command: `moderation kick`
|
||||||
* Description: Kicks the `member` from the guild with the given `reason`. If the `reason` is not provided, a default reason is used.
|
* Description: Kicks the `member` from the guild with the given `reason`. If the `reason` is not provided, a default reason is used.
|
||||||
* Example: `kick @Member bad` in order to kick `Member` with the reason `bad` (the @Member is a user mention)
|
* Example: `kick @Member bad` in order to kick `Member` with the reason `bad` (the @Member is a user mention)
|
||||||
* Required bot permission: `KICK_MEMBERS`
|
* Required bot permission: `KICK_MEMBERS`
|
||||||
Change slowmode in a channel::
|
Change slowmode in a channel::
|
||||||
* Usage: `slowmode <duration> [channel]`
|
* Usage: `slowmode <duration> [channel]`
|
||||||
|
* Slash command: `moderation slowmode`
|
||||||
* Description: This command sets the slow mode in the `channel` to the given `duration`. This command uses duration parsing. The `channel` is optional and if none is provided, the current channel is used.
|
* Description: This command sets the slow mode in the `channel` to the given `duration`. This command uses duration parsing. The `channel` is optional and if none is provided, the current channel is used.
|
||||||
* Example: `slowMode 1h2m3s #general` in order to set the slow mode in channel `general` to 1 hour 2 minutes and 3 seconds (the #general is a channel mention)
|
* Example: `slowMode 1h2m3s #general` in order to set the slow mode in channel `general` to 1 hour 2 minutes and 3 seconds (the #general is a channel mention)
|
||||||
Purging messages in a channel::
|
Purging messages in a channel::
|
||||||
* Usage: `purge <messageCount> [member]`
|
* Usage: `purge <messageCount> [member]`
|
||||||
* Description: Deletes the last `messageCount` messages in the current channel. If a `member` is provided as parameter, only the messages by this member
|
* Slash command: `moderation purge`
|
||||||
|
* Description: Deletes the last `messageCount` messages in the current channel. If a `member` is provided as parameter, only messages by this member
|
||||||
will be deleted. The deletion of this messages will *not* be logged by the logging mechanism. The messages to be deleted need to be from within the last 2 weeks, but there is no limit on how much messages can be deleted besides that.
|
will be deleted. The deletion of this messages will *not* be logged by the logging mechanism. The messages to be deleted need to be from within the last 2 weeks, but there is no limit on how much messages can be deleted besides that.
|
||||||
While the command is ongoing, a status update message will be shown indicating how far the command is. This message will be deleted after the command is done.
|
While the command is ongoing, a status update message will be shown indicating how far the command is. This message will be deleted after the command is done.
|
||||||
Deleting all messages and kicking a member::
|
|
||||||
* Usage `softBan <user> [delDays]`
|
|
||||||
* Description: Bans the given `user` and deletes the messages for the given time period in `delDays`. This duration must be in days and can be at most 7 days. When no duration is provided 7 days are used. This command automatically unbans the user afterwards.
|
|
||||||
|
|
||||||
=== Warning
|
=== Warning
|
||||||
|
|
||||||
This feature can be used to warn specific users if they did something not allowed by the rules.
|
This feature can be used to warn specific users and track the warnings.
|
||||||
|
|
||||||
Feature key: `warnings`
|
Feature key: `warnings`
|
||||||
|
|
||||||
@@ -49,27 +54,32 @@ Feature key: `warnings`
|
|||||||
`decayLog`:: will be used when all the warnings are decayed by `decayAllWarnings` and feature mode `warnDecayLogging` is enabled.
|
`decayLog`:: will be used when all the warnings are decayed by `decayAllWarnings` and feature mode `warnDecayLogging` is enabled.
|
||||||
|
|
||||||
==== Feature modes
|
==== Feature modes
|
||||||
`automaticWarnDecayLogging`:: if enabled, warn decays by `decayAllWarnings` are logged to the post target `decayLog`. Enabled by default.
|
`automaticWarnDecayLogging`:: if enabled, warn decays by the command `decayAllWarnings` are logged to the post target `decayLog`. Enabled by default.
|
||||||
|
|
||||||
|
|
||||||
==== Commands
|
==== Commands
|
||||||
Warn a user::
|
Warn a user::
|
||||||
* Usage: `warn <member> [reason]`
|
* Usage: `warn <member> [reason]`
|
||||||
|
* Slash command: `warnings create`
|
||||||
* Description: Warns the `member` with the given `reason` or a default one, if none is provided. This command sends a log message to the `warnLog` post
|
* Description: Warns the `member` with the given `reason` or a default one, if none is provided. This command sends a log message to the `warnLog` post
|
||||||
target and notifies the member about the warning.
|
target and notifies the member about the warning.
|
||||||
* Example: `warn @Member bad` in order to warn `Member` with the reason `bad` (the @Member is a user mention)
|
* Example: `warn @Member bad` in order to warn `Member` with the reason `bad` (the @Member is a user mention)
|
||||||
Listing the warnings of users::
|
Listing the warnings of users::
|
||||||
* Usage: `warnings [member]`
|
* Usage: `warnings [member]`
|
||||||
|
* Slash command: `warnings list`
|
||||||
* Description: If no `member` is provided displays all the warnings on the server. If a `member` is provided, will only display the warnings of the user.
|
* Description: If no `member` is provided displays all the warnings on the server. If a `member` is provided, will only display the warnings of the user.
|
||||||
This uses a paginated output, which means multiple pages in case there are more warnings to display. This will also display the date the warning was decayed if applicable.
|
This uses a paginated output, which means multiple pages in case there are more warnings to display. This will also display the date the warning was decayed if applicable.
|
||||||
Showing your warnings::
|
Showing your warnings::
|
||||||
* Usage: `myWarnings`
|
* Usage: `myWarnings`
|
||||||
|
* Slash command: `warningspublic myWarnings`
|
||||||
* Description: Displays the amount of warnings of the user executing on the server. This will show both active and total warnings.
|
* Description: Displays the amount of warnings of the user executing on the server. This will show both active and total warnings.
|
||||||
Decaying all warnings regardless of the date::
|
Decaying all warnings regardless of the date::
|
||||||
* Usage: `decayAllWarnings`
|
* Usage: `decayAllWarnings`
|
||||||
|
* Slash command: `warningdecay decayAllWarnings`
|
||||||
* Description: This will cause all warnings of this server which are not decayed yet to be decayed instantly. Requires you to confirm the command.
|
* Description: This will cause all warnings of this server which are not decayed yet to be decayed instantly. Requires you to confirm the command.
|
||||||
Deleting a warning::
|
Deleting a warning::
|
||||||
* Usage: `deleteWarning <warnId>`
|
* Usage: `deleteWarning <warnId>`
|
||||||
|
* Slash command: `warnings delete`
|
||||||
* Description: Deletes the warning identified by `warnId` completely from the database.
|
* Description: Deletes the warning identified by `warnId` completely from the database.
|
||||||
|
|
||||||
|
|
||||||
@@ -83,7 +93,7 @@ Feature key: `warnDecay`
|
|||||||
`decayDays` The amount of days after which a warning gets decayed. Default: 90
|
`decayDays` The amount of days after which a warning gets decayed. Default: 90
|
||||||
|
|
||||||
==== Post targets
|
==== Post targets
|
||||||
`decayLog`:: target of the log message containing the information in case a warning is decayed.
|
`decayLog`:: target of the log message containing the information in case a warning is decayed. This post target is the same from the `warnings` feature.
|
||||||
|
|
||||||
==== Feature modes
|
==== Feature modes
|
||||||
`automaticWarnDecayLogging`:: if enabled, automatic warn decays are logged to the `decayLog` post target. Enabled by default.
|
`automaticWarnDecayLogging`:: if enabled, automatic warn decays are logged to the `decayLog` post target. Enabled by default.
|
||||||
@@ -95,8 +105,7 @@ Decaying all warnings if necessary::
|
|||||||
|
|
||||||
=== Muting
|
=== Muting
|
||||||
|
|
||||||
This feature provides the capability to mute users, which effectively means it applies a role which prevents them from sending messages and speaking in voice chat.
|
This feature provides the capability to mute users using the Discord functionality of timeouts.
|
||||||
The role used to mute member will not be created and needs to be provided. There is no validation if the provided role actually mutes members.
|
|
||||||
If the user leaves the guild and rejoins, the mute will be re-applied.
|
If the user leaves the guild and rejoins, the mute will be re-applied.
|
||||||
|
|
||||||
Feature key `muting`
|
Feature key `muting`
|
||||||
@@ -106,15 +115,15 @@ Feature key `muting`
|
|||||||
|
|
||||||
==== Feature modes
|
==== Feature modes
|
||||||
`muteLogging`:: if enabled, each mute is to be logged to the post target `muteLog`. Enabled by default.
|
`muteLogging`:: if enabled, each mute is to be logged to the post target `muteLog`. Enabled by default.
|
||||||
`unMuteLogging`:: if enabled, each un mute which happens 'naturally' (after the defined time period is over) will be logged to the `muteLog` post target. Enabled by default.
|
`unMuteLogging`:: if enabled, each un-mute which happens 'naturally' (after the defined time period is over) will be logged to the `muteLog` post target. Enabled by default.
|
||||||
|
|
||||||
|
|
||||||
==== Commands
|
==== Commands
|
||||||
Muting a user::
|
Muting a user::
|
||||||
* Usage: `mute <member> <duration> [reason]`
|
* Usage: `mute <member> <duration> [reason]`
|
||||||
* Description: Applies the mute role to the given `member` for the given `duration`. If `reason` is not provided, a default reason will be used for logging in the `muteLog` post target. This will automatically un-mute the user after the duration has passed. If the un-mute happens automatically, this will also be logged in the `muteLog` post target.
|
* Description: Timeouts the given `member` for the given `duration`. If `reason` is not provided, a default reason will be used for logging in the `muteLog` post target. This will automatically un-mute the user after the duration has passed. If the un-mute happens automatically, this will also be logged in the `muteLog` post target.
|
||||||
This command sends a notification to the user about the mute and kicks the user from the voice channel, if any.
|
This command sends a notification to the user about the mute.
|
||||||
* Example: `mute @Member 1h2m3s bad` in order to mute the member `Member` for 1 hour 2 minutes and 3 seconds with the reason `bad` (the @Member is a user mention)
|
* Example: `mute @Member 1h2m3s muted` in order to mute the member `Member` for 1 hour 2 minutes and 3 seconds with the reason `muted` (the @Member is a user mention)
|
||||||
Un-Muting a user::
|
Un-Muting a user::
|
||||||
* Usage: `unMute <member>`
|
* Usage: `unMute <member>`
|
||||||
* Description: Removes the mute role from `member`. This does *not* log the un-mute.
|
* Description: Removes the mute role from `member`. This does *not* log the un-mute.
|
||||||
@@ -164,7 +173,7 @@ Retrieving user notes::
|
|||||||
|
|
||||||
Feature key `inviteFilter`
|
Feature key `inviteFilter`
|
||||||
|
|
||||||
This feature provides the ability to automatically delete invites not allowed on the server. These illegal invites can be tracked in a specific feature mode, in order to analyze if allowing them would make sense.
|
This feature provides the ability to automatically delete invites not allowed on the server. These not allowed invites can be tracked in a specific feature mode, in order to analyze if allowing them would make sense.
|
||||||
Another feature mode can send a notification to a post target in case an invite link has been deleted.
|
Another feature mode can send a notification to a post target in case an invite link has been deleted.
|
||||||
|
|
||||||
==== Post targets
|
==== Post targets
|
||||||
@@ -198,10 +207,12 @@ Remove all or individual invites from the tracked filtered invites::
|
|||||||
|
|
||||||
Feature key `profanityFilter`
|
Feature key `profanityFilter`
|
||||||
|
|
||||||
This functionality provides the ability to automatically delete any detected profanities. These profanities are configured via the profanity groups and profanity regexes.
|
This functionality provides the ability to automatically delete any detected profanities. These profanities are configured via the profanity groups and profanity regexes, and uses the functionality provided by the <<profanitygroups,core profanity groups>>. Additionally, it is possible to use a voting process to validate a reported profanity.
|
||||||
It is possible to use a voting process to validate a reported profanity.
|
|
||||||
The uses of profanities can be tracked and a command is available to show the profanities for a user.
|
The uses of profanities can be tracked and a command is available to show the profanities for a user.
|
||||||
|
|
||||||
|
==== Relevant system configuration
|
||||||
|
`profanityVotes` The amount of votes necessary to confirm or deny a profanity. As long this threshold of votes is not reached, the reported profanity is considered not validated. Default: 5
|
||||||
|
|
||||||
==== Post targets
|
==== Post targets
|
||||||
`profanityQueue`:: target for reports to be voted on - if the feature mode `filterNotifications` is enabled.
|
`profanityQueue`:: target for reports to be voted on - if the feature mode `filterNotifications` is enabled.
|
||||||
|
|
||||||
@@ -211,6 +222,7 @@ The uses of profanities can be tracked and a command is available to show the pr
|
|||||||
`profanityVote`:: if enabled, sends a notification to the `profanityQueue` post target to notify about a detected profanity to be voted on. Requires feature mode `profanityReport` to be enabled. Enabled by default.
|
`profanityVote`:: if enabled, sends a notification to the `profanityQueue` post target to notify about a detected profanity to be voted on. Requires feature mode `profanityReport` to be enabled. Enabled by default.
|
||||||
`autoDeleteAfterVote`:: if enabled, after a profanity vote has reached the threshold (system config key `profanityVotes`), depending on the outcome, it will be deleted. Requires feature mode `profanityVote` to be enabled. Enabled by default.
|
`autoDeleteAfterVote`:: if enabled, after a profanity vote has reached the threshold (system config key `profanityVotes`), depending on the outcome, it will be deleted. Requires feature mode `profanityVote` to be enabled. Enabled by default.
|
||||||
`trackProfanities`:: if enabled, the command `profanities` is available to show the profanities of a member. Requires feature mode `profanityVote` to be enabled. Enabled by default.
|
`trackProfanities`:: if enabled, the command `profanities` is available to show the profanities of a member. Requires feature mode `profanityVote` to be enabled. Enabled by default.
|
||||||
|
`profanityModerationActions`:: if enabled, a profanity report shows actions which can be executed on the user that used the profanity. This mode shows different actions depending on the other features enabled. If `moderation` is enabled, the actions for banning and kicking are shown. If `muting` is enabled, an action for muting is available. If `warnings` is enabled, the action for creating warnings is available. Disabled by default.
|
||||||
|
|
||||||
==== Emotes
|
==== Emotes
|
||||||
* `profanityFilterAgreeEmote` reaction emote to indicate agreement about a reported profanity
|
* `profanityFilterAgreeEmote` reaction emote to indicate agreement about a reported profanity
|
||||||
@@ -219,20 +231,24 @@ The uses of profanities can be tracked and a command is available to show the pr
|
|||||||
==== Commands
|
==== Commands
|
||||||
Show the profanities of a member::
|
Show the profanities of a member::
|
||||||
* Usage `profanities <member>`
|
* Usage `profanities <member>`
|
||||||
* Description: Shows the true and false positive profanities of the given member. Also, if there any, shows the recent true positive reports.
|
* Description: Shows the true and false positive profanities of the given member. Also, if there are any, shows the recent true positive reports.
|
||||||
|
|
||||||
=== Reporting a message via reaction
|
=== Reporting a message via reaction
|
||||||
|
|
||||||
Feature key `reportReactions`
|
Feature key `reportReactions`
|
||||||
|
|
||||||
This functionality is used to report user by members via adding a reaction to a message. This message is then send to the post target `reactionReports`
|
This functionality is used to report user by members via adding a reaction to a message or by message context command. This message is then send to the post target `reactionReports` notifying the moderation of the server. Additional reports of the same user, within the cooldown defined by system config `reactionReportCooldownSeconds` (in seconds), increment the report counter instead of adding another notification. A reporting user cannot report another user within a time range defined by the same system config.
|
||||||
notifying the moderation of the server. Additional reports of the same user, within the cooldown defined by system config `reactionReportCooldownSeconds` (in seconds), increment the report counter instead of adding another notification. A reporting user cannot report another user within a time range defined by the same system config.
|
|
||||||
|
|
||||||
==== Relevant system configuration
|
==== Relevant system configuration
|
||||||
`reactionReportCooldownSeconds` The amount of seconds between the reports to create a new report for a user. The amount of seconds necessary for a new report of a user to be reported again. Default: 300
|
`reactionReportCooldownSeconds` The amount of seconds between the reports to create a new report for a user. The amount of seconds necessary for a new report of a user to be reported again. Default: 300
|
||||||
|
|
||||||
==== Post targets
|
==== Post targets
|
||||||
`reactionReports`:: target for report notification messages
|
`reactionReports`:: channel for report notification messages
|
||||||
|
|
||||||
|
=== Feature modes
|
||||||
|
`singularReportReactions`:: if enabled, causes additional reports of the same message to show a counter which is being incremented, instead of creating new reports. Disabled by default.
|
||||||
|
`anonymousReportReactions`:: if enabled, makes it impossible to detect the reporter of a message. No report is stored in the database. Disabled by default.
|
||||||
|
`reactionReportActions`:: if enabled, shows potential actions to perform on the report. This mode shows different actions depending on the other features enabled. If `moderation` is enabled, the actions for banning and kicking are shown. If `muting` is enabled, an action for muting is available. If `warnings` is enabled, the action for creating warnings is available. Disabled by default.
|
||||||
|
|
||||||
==== Emotes
|
==== Emotes
|
||||||
* `reactionReport` reaction emote to report a message
|
* `reactionReport` reaction emote to report a message
|
||||||
@@ -251,7 +267,7 @@ This functionality will automatically mute a member who mentions more than a con
|
|||||||
==== Relevant system configuration
|
==== Relevant system configuration
|
||||||
`massPingMinLevel`:: The level at which members are allowed to mass ping and not get muted.
|
`massPingMinLevel`:: The level at which members are allowed to mass ping and not get muted.
|
||||||
|
|
||||||
=== Tracking general infractions
|
=== Tracking infractions
|
||||||
|
|
||||||
Feature key `infractions`
|
Feature key `infractions`
|
||||||
|
|
||||||
@@ -261,5 +277,20 @@ This functionality just behaves to track general infractions of users, be it thr
|
|||||||
`infractionNotification`:: target for notifications of infraction level changes
|
`infractionNotification`:: target for notifications of infraction level changes
|
||||||
|
|
||||||
==== Relevant system configuration
|
==== Relevant system configuration
|
||||||
`infractionLevels`:: The amount of infraction levels which should be possible to configure
|
`infractionLevels`:: The amount of infraction levels which should be possible to configure. Default: 5
|
||||||
`infractionLevel`:: This system config key acts as a prefix up until the amount of infraction levels. With this you can configure the amount of points necessary to reach the given level: For example `infractionLevel2` would be the amount of points necessary to reach level 2. These levels are not enforced to be ordered nor if all levels have a value assigned to it. Any level evaluation will stop at the first level not defined.
|
`infractionLevel`:: This system config key acts as a prefix up until the amount of infraction levels. With this you can configure the amount of points necessary to reach the given level: For example `infractionLevel2` would be the amount of points necessary to reach level 2. These levels are not enforced to be ordered nor if all levels have a value assigned to it. Any level evaluation will stop at the first level not defined. Per default, the levels are 10, 20, 30, 40, and 50.
|
||||||
|
`warnInfractionPoints`:: The amount of infraction points a warning has. Default: 50
|
||||||
|
`banInfractionPoints`:: The amount of infraction points a ban has. Default: 150
|
||||||
|
`kickInfractionPoints`:: The amount of infraction points a kick has. Default: 20
|
||||||
|
`muteInfractionPoints`:: The amount of infraction points a kick has. Default: 10
|
||||||
|
|
||||||
|
=== Honey pot
|
||||||
|
|
||||||
|
Feature key `honeypot`
|
||||||
|
|
||||||
|
This feature is used to create a honey pot for bots using the onboarding feature. It works by adding a specific role to onboarding as an selectable role and specifically mark it so that normal users do not pick it. Bots often pick the all or the first role from a role selection, and this mechanism tries to detect bots this way. The feature uses a configurable, and bans users who receive this role (with some configurable filtering, so that normal users do not pick the role inadvertently).
|
||||||
|
|
||||||
|
==== Relevant system configuration
|
||||||
|
`honeypotRoleId`:: The ID of the role to use as a honey pot role. Default: 5
|
||||||
|
`honeypotIgnoredLevel`:: The level starting from which users should be ignored when they receive the honey pot role. If the `experience` feature is not enabled, this takes no effect. The purpose of this is to ignore people who re-joined the server and select it. Default: 100
|
||||||
|
`honeypotIgnoredJoinDurationSeconds`:: The amount of seconds after joining a user should be ignored. Bots usually take very quick actions, this is to select normal users, who are probably slower than a bot. Default: 86400
|
||||||
|
|||||||
Reference in New Issue
Block a user