- Added comment for `anti-spam-quit-message-time`

- Added `set {}` wrapper
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-21 15:33:18 +02:00
parent 708eac2097
commit 18a0363b2f
1 changed files with 12 additions and 8 deletions

View File

@ -198,15 +198,19 @@ set
The following settings relate to controlling potential spam-like activity on your server.
```
anti-spam-quit-message-time 10s;
/* Settings for spam filter */
spamfilter
set
{
ban-time 1d; /* default duration of a *LINE ban set by spamfilter */
ban-reason "Spam/Advertising"; /* default reason */
virus-help-channel "#help"; /* channel to use for 'viruschan' action */
/* except "#help"; channel to exempt from Spamfilter */
/* Minimum connection time before valid use of `/QUIT` */
anti-spam-quit-message-time 10s;
/* Settings for spam filter */
spamfilter
{
ban-time 1d; /* default duration of a *LINE ban set by spamfilter */
ban-reason "Spam/Advertising"; /* default reason */
virus-help-channel "#help"; /* channel to use for 'viruschan' action */
/* except "#help"; channel to exempt from Spamfilter */
}
}
```