3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-22 11:59:40 +01:00

change nick reservation defaults

This commit is contained in:
Shivaram Lingamneni 2019-12-31 21:30:51 -05:00
parent bc0712b19b
commit ea4d4a2f64

View File

@ -306,20 +306,22 @@ accounts:
# nick-reservation controls how, and whether, nicknames are linked to accounts # nick-reservation controls how, and whether, nicknames are linked to accounts
nick-reservation: nick-reservation:
# is there any enforcement of reserved nicknames? # is there any enforcement of reserved nicknames?
enabled: false enabled: true
# how many nicknames, in addition to the account name, can be reserved? # how many nicknames, in addition to the account name, can be reserved?
additional-nick-limit: 2 additional-nick-limit: 2
# method describes how nickname reservation is handled # method describes how nickname reservation is handled
# already logged-in using SASL or NickServ
# timeout: let the user change to the registered nickname, give them X seconds # timeout: let the user change to the registered nickname, give them X seconds
# to login and then rename them if they haven't done so # to login and then rename them if they haven't done so
# strict: don't let the user change to the registered nickname unless they're # strict: don't let the user change to the registered nickname unless they're
# already logged-in using SASL or NickServ # already logged-in using SASL or NickServ
# optional: no enforcement by default, but allow users to opt in to # optional: no enforcement by default, but allow users to opt in to
# the enforcement level of their choice # the enforcement level of their choice
method: strict #
# 'optional' matches the behavior of other NickServs, but 'strict' is
# preferable as long as all your users can enable SASL.
method: optional
# allow users to set their own nickname enforcement status, e.g., # allow users to set their own nickname enforcement status, e.g.,
# to opt in to strict enforcement # to opt in to strict enforcement