diff options
| author | Adam <Adam@anope.org> | 2014-05-01 21:03:32 -0400 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2014-05-01 21:03:32 -0400 |
| commit | 1f2c385bb9b7a78094024d226440a2ec4cfb6b80 (patch) | |
| tree | 87ba22b2f91a06034b256254568e52c340f1f790 /data | |
| parent | d79dd0b7d705e8f18ae0d6494a8bc65c2b0c2819 (diff) | |
Add config options to ns_suspend and cs_suspend to configure which information is shown to non opers
Diffstat (limited to 'data')
| -rw-r--r-- | data/chanserv.example.conf | 7 | ||||
| -rw-r--r-- | data/nickserv.example.conf | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/data/chanserv.example.conf b/data/chanserv.example.conf index d4a2f841c..720738403 100644 --- a/data/chanserv.example.conf +++ b/data/chanserv.example.conf @@ -1215,6 +1215,13 @@ module * If not set, the default is never. */ expire = 90d + + /* + * Settings to show to non-opers in ChanServ's INFO output. + * Comment to completely disable showing any information about + * suspended channels to non-opers. + */ + show = "suspended, by, reason, on, expires" } command { service = "ChanServ"; name = "SUSPEND"; command = "chanserv/suspend"; permission = "chanserv/suspend"; group = "chanserv/admin"; } command { service = "ChanServ"; name = "UNSUSPEND"; command = "chanserv/unsuspend"; permission = "chanserv/suspend"; group = "chanserv/admin"; } diff --git a/data/nickserv.example.conf b/data/nickserv.example.conf index 87804e0fa..deca9164f 100644 --- a/data/nickserv.example.conf +++ b/data/nickserv.example.conf @@ -616,6 +616,13 @@ module * This directive is optional. If not set, the default is never. */ #suspendexpire = 90d + + /* + * Settings to show to non-opers in NickServ's INFO output. + * Comment to completely disable showing any information about + * suspended nicknames to non-opers. + */ + show = "suspended, by, reason, on, expires" } command { service = "NickServ"; name = "SUSPEND"; command = "nickserv/suspend"; permission = "nickserv/suspend"; group = "nickserv/admin"; } command { service = "NickServ"; name = "UNSUSPEND"; command = "nickserv/unsuspend"; permission = "nickserv/suspend"; group = "nickserv/admin"; } |
