memoserv: complete + improve the memo service

Finish MemoServ on the typed, event-logged memo model: Db memo_send/list/read/
del/unread_memos + Store facade, and a new fedserv-memoserv crate (a default
service). Beyond the basics: SEND caps a mailbox (30) so nobody's flooded, READ
takes <num>|NEW|ALL, DEL takes <num>|ALL, LIST previews and flags unread, and
NickServ notifies you of waiting memos on login. Memos persist and federate
(Global scope) like other account data. Also lands NetAction::QuitUser (BotServ
plumbing). Data + delivery/login-notify tests.
This commit is contained in:
Jean Chevronnet 2026-07-13 04:50:27 +00:00
parent 651cb683de
commit 577c05ad2e
No known key found for this signature in database
12 changed files with 374 additions and 6 deletions

8
Cargo.lock generated
View file

@ -289,6 +289,7 @@ dependencies = [
"fedserv-chanserv",
"fedserv-example",
"fedserv-inspircd",
"fedserv-memoserv",
"fedserv-nickserv",
"hmac",
"pbkdf2",
@ -340,6 +341,13 @@ dependencies = [
"fedserv-api",
]
[[package]]
name = "fedserv-memoserv"
version = "0.0.1"
dependencies = [
"fedserv-api",
]
[[package]]
name = "fedserv-nickserv"
version = "0.0.1"