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

Merge pull request #1674 from slingamn/altnicks

clarify the semantics of additional-nick-limit
This commit is contained in:
Shivaram Lingamneni 2021-06-03 12:41:13 -04:00 committed by GitHub
commit 36703580fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 9 deletions

View File

@ -456,7 +456,9 @@ accounts:
enabled: true 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 # (note that additional nicks are unusable under force-nick-equals-account
# or if the client is always-on)
additional-nick-limit: 0
# method describes how nickname reservation is handled # method describes how nickname reservation is handled
# strict: users must already be logged in to their account (via # strict: users must already be logged in to their account (via
@ -913,7 +915,7 @@ history:
# if query-cutoff is set to 'registration-time', this allows retrieval # if query-cutoff is set to 'registration-time', this allows retrieval
# of messages that are up to 'grace-period' older than the above cutoff. # of messages that are up to 'grace-period' older than the above cutoff.
# if you use 'registration-time', this is recommended to allow logged-out # if you use 'registration-time', this is recommended to allow logged-out
# users to do session resumption / query history after disconnections. # users to query history after disconnections.
grace-period: 1h grace-period: 1h
# options to store history messages in a persistent database (currently only MySQL). # options to store history messages in a persistent database (currently only MySQL).

View File

@ -120,9 +120,10 @@ server:
# them and relay them to non-websocket clients (as in traditional IRC). # them and relay them to non-websocket clients (as in traditional IRC).
enforce-utf8: true enforce-utf8: true
# whether to look up user hostnames with reverse DNS. # whether to look up user hostnames with reverse DNS. there are 3 possibilities:
# (disabling this will expose user IPs instead of hostnames; # 1. [enabled here] lookup-hostnames enabled, IP cloaking disabled; users will see each other's hostnames
# to make IP/hostname information private, see the ip-cloaking section) # 2. lookup-hostnames disabled, IP cloaking disabled; users will see each other's numeric IPs
# 3. IP cloaking enabled; users will see cloaked hostnames
lookup-hostnames: true lookup-hostnames: true
# whether to confirm hostname lookups using "forward-confirmed reverse DNS", i.e., for # whether to confirm hostname lookups using "forward-confirmed reverse DNS", i.e., for
# any hostname returned from reverse DNS, resolve it back to an IP address and reject it # any hostname returned from reverse DNS, resolve it back to an IP address and reject it
@ -428,6 +429,8 @@ accounts:
enabled: true 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?
# (note that additional nicks are unusable under force-nick-equals-account
# or if the client is always-on)
additional-nick-limit: 2 additional-nick-limit: 2
# method describes how nickname reservation is handled # method describes how nickname reservation is handled
@ -671,7 +674,6 @@ logging:
# server server startup, rehash, and shutdown events # server server startup, rehash, and shutdown events
# accounts account registration and authentication # accounts account registration and authentication
# channels channel creation and operations # channels channel creation and operations
# commands command calling and operations
# opers oper actions, authentication, etc # opers oper actions, authentication, etc
# services actions related to NickServ, ChanServ, etc. # services actions related to NickServ, ChanServ, etc.
# internal unexpected runtime behavior, including potential bugs # internal unexpected runtime behavior, including potential bugs
@ -883,9 +885,10 @@ history:
# joined the channel, so only always-on clients can view history). # joined the channel, so only always-on clients can view history).
query-cutoff: 'none' query-cutoff: 'none'
# but if this is set, you can retrieve messages that are up to `grace-period` # if query-cutoff is set to 'registration-time', this allows retrieval
# older than the above cutoff time. this is recommended to allow logged-out # of messages that are up to 'grace-period' older than the above cutoff.
# users to do session resumption / query history after disconnections. # if you use 'registration-time', this is recommended to allow logged-out
# users to query history after disconnections.
grace-period: 1h grace-period: 1h
# options to store history messages in a persistent database (currently only MySQL). # options to store history messages in a persistent database (currently only MySQL).