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

Merge pull request #2015 from slingamn/ascii

change default casefolding to ascii
This commit is contained in:
Shivaram Lingamneni 2022-12-11 18:57:35 -08:00 committed by GitHub
commit 9ab8b6710c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 20 deletions

View File

@ -25,20 +25,20 @@ If you want to take a look at a running Ergo instance or test some client code,
* integrated services: NickServ for user accounts, ChanServ for channel registration, and HostServ for vanity hosts * integrated services: NickServ for user accounts, ChanServ for channel registration, and HostServ for vanity hosts
* bouncer-like features: storing and replaying history, allowing multiple clients to use the same nickname * bouncer-like features: storing and replaying history, allowing multiple clients to use the same nickname
* UTF-8 nick and channel names with rfc7613 (PRECIS)
* native TLS/SSL support, including support for client certificates * native TLS/SSL support, including support for client certificates
* [IRCv3 support](https://ircv3.net/software/servers.html)
* [yaml](https://yaml.org/) configuration * [yaml](https://yaml.org/) configuration
* updating server config and TLS certificates on-the-fly (rehashing) * updating server config and TLS certificates on-the-fly (rehashing)
* SASL authentication * SASL authentication
* [LDAP support](https://github.com/ergochat/ergo-ldap) * [LDAP support](https://github.com/ergochat/ergo-ldap)
* supports [multiple languages](https://crowdin.com/project/ergochat) (you can also set a default language for your network) * supports [multiple languages](https://crowdin.com/project/ergochat) (you can also set a default language for your network)
* optional support for UTF-8 nick and channel names with RFC 8265 (PRECIS)
* advanced security and privacy features (support for requiring SASL for all logins, cloaking IPs, and running as a Tor hidden service) * advanced security and privacy features (support for requiring SASL for all logins, cloaking IPs, and running as a Tor hidden service)
* an extensible privilege system for IRC operators * an extensible privilege system for IRC operators
* ident lookups for usernames * ident lookups for usernames
* automated client connection limits * automated client connection limits
* passwords stored with [bcrypt](https://godoc.org/golang.org/x/crypto) * passwords stored with [bcrypt](https://godoc.org/golang.org/x/crypto)
* `UBAN`, a unified ban system that can target IPs, networks, masks, and registered accounts (`KLINE` and `DLINE` are also supported) * `UBAN`, a unified ban system that can target IPs, networks, masks, and registered accounts (`KLINE` and `DLINE` are also supported)
* [IRCv3 support](https://ircv3.net/software/servers.html)
* a focus on developing with [specifications](https://ergo.chat/specs.html) * a focus on developing with [specifications](https://ergo.chat/specs.html)
For more detailed information on Ergo's functionality, see: For more detailed information on Ergo's functionality, see:

View File

@ -131,15 +131,15 @@ server:
# casemapping controls what kinds of strings are permitted as identifiers (nicknames, # casemapping controls what kinds of strings are permitted as identifiers (nicknames,
# channel names, account names, etc.), and how they are normalized for case. # channel names, account names, etc.), and how they are normalized for case.
# with the recommended default of 'precis', UTF8 identifiers that are "sane" # the recommended default is 'ascii' (traditional ASCII-only identifiers).
# (according to RFC 8265) are allowed, and the server additionally tries to protect # the other options are 'precis', which allows UTF8 identifiers that are "sane"
# against confusable characters ("homoglyph attacks"). # (according to UFC 8265), with additional mitigations for homoglyph attacks,
# the other options are 'ascii' (traditional ASCII-only identifiers), and 'permissive', # and 'permissive', which allows identifiers containing unusual characters like
# which allows identifiers to contain unusual characters like emoji, but makes users # emoji, at the cost of increased vulnerability to homoglyph attacks and potential
# vulnerable to homoglyph attacks. unless you're really confident in your decision, # client compatibility problems. we recommend leaving this value at its default;
# we recommend leaving this value at its default (changing it once the network is # however, note that changing it once the network is already up and running is
# already up and running is problematic). # problematic.
casemapping: "precis" casemapping: "ascii"
# enforce-utf8 controls whether the server will preemptively discard non-UTF8 # enforce-utf8 controls whether the server will preemptively discard non-UTF8
# messages (since they cannot be relayed to websocket clients), or will allow # messages (since they cannot be relayed to websocket clients), or will allow

View File

@ -105,15 +105,15 @@ server:
# casemapping controls what kinds of strings are permitted as identifiers (nicknames, # casemapping controls what kinds of strings are permitted as identifiers (nicknames,
# channel names, account names, etc.), and how they are normalized for case. # channel names, account names, etc.), and how they are normalized for case.
# with the recommended default of 'precis', UTF8 identifiers that are "sane" # the recommended default is 'ascii' (traditional ASCII-only identifiers).
# (according to RFC 8265) are allowed, and the server additionally tries to protect # the other options are 'precis', which allows UTF8 identifiers that are "sane"
# against confusable characters ("homoglyph attacks"). # (according to UFC 8265), with additional mitigations for homoglyph attacks,
# the other options are 'ascii' (traditional ASCII-only identifiers), and 'permissive', # and 'permissive', which allows identifiers containing unusual characters like
# which allows identifiers to contain unusual characters like emoji, but makes users # emoji, at the cost of increased vulnerability to homoglyph attacks and potential
# vulnerable to homoglyph attacks. unless you're really confident in your decision, # client compatibility problems. we recommend leaving this value at its default;
# we recommend leaving this value at its default (changing it once the network is # however, note that changing it once the network is already up and running is
# already up and running is problematic). # problematic.
casemapping: "precis" casemapping: "ascii"
# enforce-utf8 controls whether the server will preemptively discard non-UTF8 # enforce-utf8 controls whether the server will preemptively discard non-UTF8
# messages (since they cannot be relayed to websocket clients), or will allow # messages (since they cannot be relayed to websocket clients), or will allow