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

Merge pull request #786 from slingamn/new_defaults

change some recommended defaults in the config
This commit is contained in:
Shivaram Lingamneni 2020-02-13 22:31:10 -08:00 committed by GitHub
commit 0d5a4fd584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -258,7 +258,7 @@ accounts:
enabled: true enabled: true
# this is the bcrypt cost we'll use for account passwords # this is the bcrypt cost we'll use for account passwords
bcrypt-cost: 12 bcrypt-cost: 9
# length of time a user has to verify their account before it can be re-registered # length of time a user has to verify their account before it can be re-registered
verify-timeout: "32h" verify-timeout: "32h"
@ -325,10 +325,10 @@ accounts:
# #
# 'optional' matches the behavior of other NickServs, but 'strict' is # 'optional' matches the behavior of other NickServs, but 'strict' is
# preferable if all your users can enable SASL. # preferable if all your users can enable SASL.
method: optional method: strict
# 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 out of strict enforcement
allow-custom-enforcement: true allow-custom-enforcement: true
# rename-timeout - this is how long users have 'til they're renamed # rename-timeout - this is how long users have 'til they're renamed
@ -346,9 +346,10 @@ accounts:
# client # client
enabled: true enabled: true
# clients can opt in to bouncer functionality using the cap system, or # if this is disabled, clients have to opt in to bouncer functionality
# via nickserv. if this is enabled, then they have to opt out instead # using nickserv or the cap system. if it's enabled, they can opt out
allowed-by-default: false # via nickserv
allowed-by-default: true
# vhosts controls the assignment of vhosts (strings displayed in place of the user's # vhosts controls the assignment of vhosts (strings displayed in place of the user's
# hostname/IP) by the HostServ service # hostname/IP) by the HostServ service