Rename the project to Echo (was fedserv)
Rebrand the daemon and workspace: the binary is now `echo`, every crate is `echo-*` (`echo-api` and the module crates), Rust imports use `echo_*`, the gRPC proto is `proto/echo.proto` with package `echo.v1`, and the log filter, gossip peer-name default, and on-disk store default (`echo.db.jsonl`) follow. Docs updated throughout. No behaviour change; crate directories and the config schema are untouched.
This commit is contained in:
parent
e7037572e5
commit
993f5b2eea
159 changed files with 660 additions and 660 deletions
|
|
@ -26,7 +26,7 @@ protocol = 1206 # InspIRCd link protocol version (1206 = insp4, 1205
|
|||
# name = "other-node" # TLS name to expect; must match the peer certificate
|
||||
|
||||
# Directory replication (gRPC) — lets a website mirror the account/channel
|
||||
# directory (identity + metadata only, never credentials; see proto/fedserv.proto).
|
||||
# directory (identity + metadata only, never credentials; see proto/echo.proto).
|
||||
# Omit this section to run without it.
|
||||
# [grpc]
|
||||
# bind = "127.0.0.1:50051" # a private network hop is the expected deployment
|
||||
|
|
@ -76,12 +76,12 @@ protocol = 1206 # InspIRCd link protocol version (1206 = insp4, 1205
|
|||
# [session]
|
||||
# default_limit = 3
|
||||
|
||||
# Account authority. Omit this section (the default) and fedserv owns accounts
|
||||
# Account authority. Omit this section (the default) and Echo owns accounts
|
||||
# itself: NickServ REGISTER / IDENTIFY / SET PASSWORD all work standalone, no
|
||||
# external service needed. Set external = true to hand identity to an outside
|
||||
# authority (e.g. your website): IRC can then only IDENTIFY — REGISTER, DROP,
|
||||
# SET PASSWORD/EMAIL, RESETPASS, CONFIRM, CERT and GROUP are refused, and the
|
||||
# authority pushes accounts in via the gRPC Accounts API (see [grpc]). fedserv
|
||||
# authority pushes accounts in via the gRPC Accounts API (see [grpc]). Echo
|
||||
# still owns all channel/vhost/ban data, keyed by the account name.
|
||||
# [auth]
|
||||
# external = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue