+ Moderation in Zeppelin is multi-layered, with 'typical' actions such as warning, muting, kicking, banning, + etc. Featuring flags, moderation advances to allow for alerts, thresholds, acting as others, and the creation of + cases for context (right-click) actions. +
+
+ This guide will be expanded in the future. For now it covers how to setup the
+
These first config options define how Zeppelin will interact with the users sanctioned.
+ ++ The values `dm_on_warn`, `dm_on_kick`, and `dm_on_ban` determine whether a user will be notified of their sanctions + through DMs. Ignoring privacy settings, setting these to `true` will notify the user, and `false` keeps them in the + dark. Note: `tempban` actions take the `ban` configuration. +
+ ++ The other set of notifying options `message_on_warn`, `message_on_kick`, and `message_on_ban` are similar to their + `DM` counterparts, but, taking the value of `message_channel` they notify a channel instead. Note: `tempban` actions + take the `ban` configuration. +
+ +
+ Both of these notifying options take the same message templates defined in `warn_message`, `kick_message`, and
+ `ban_message`. In the official documentation, you will see these written as one line, you can make the messages
+ multi-line like so:
+
+ Alerts are a nifty way for your mod-team to be notified of actors trying to evade sanctions by leaving and + re-joining your server. Define the channel in `alert_channel` and set `alert_on_rejoin` to `true`. +
+ ++ Thresholds are useful for alerting moderators if a user is about to exceed a pre-determined number of cases. + This can be used to make your mod team consider whether harsher action is necessary. Define the threshold in + `warn_notify_threshold`, adjust the message under `warn_notify_message`, and enable `warn_notify_enabled`. +
+ ++ You can adjust the day's worth of messages Zeppelin deletes under the `ban_delete_message_days` option. Do not + append your input with 'd'. +
+ +
+ Before reading this, you should read the
+