diff options
| author | 2019-01-09 21:28:13 -0700 | |
|---|---|---|
| committer | 2019-01-09 21:28:13 -0700 | |
| commit | d487e262e8e39388907ec137d878fdaf65d960ec (patch) | |
| tree | fceaf287c1e6511fb951fb1a2135322075f9a7a0 /config-default.yml | |
| parent | Merge pull request #263 from python-discord/help-command-patch (diff) | |
| parent | Merge branch 'master' into SebastiaanZ/embed-detection-filter (diff) | |
Merge pull request #259 from python-discord/SebastiaanZ/embed-detection-filter
Detecting self-botting/unofficial client use with a rich embed filter
Diffstat (limited to 'config-default.yml')
| -rw-r--r-- | config-default.yml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/config-default.yml b/config-default.yml index a51d00778..21d7f20b9 100644 --- a/config-default.yml +++ b/config-default.yml @@ -134,17 +134,19 @@ guild: filter: # What do we filter? - filter_zalgo: false - filter_invites: true - filter_domains: true - watch_words: true - watch_tokens: true + filter_zalgo: false + filter_invites: true + filter_domains: true + filter_rich_embeds: true + watch_words: true + watch_tokens: true # Notify user on filter? # Notifications are not expected for "watchlist" type filters - notify_user_zalgo: false - notify_user_invites: true - notify_user_domains: false + notify_user_zalgo: false + notify_user_invites: true + notify_user_domains: false + notify_user_rich_embeds: true # Filter configuration ping_everyone: true # Ping @everyone when we send a mod-alert? |