modules: port securelist and denychans (badchan/goodchan with redirect)

This commit is contained in:
Jean Chevronnet 2026-08-09 11:35:21 +00:00
parent 245d8d8529
commit dc22dcd072
4 changed files with 272 additions and 0 deletions

View file

@ -11,6 +11,7 @@ pub mod chathistory;
pub mod cloak;
pub mod connectban;
pub mod connflood;
pub mod denychans;
pub mod dnsbl;
pub mod filter;
pub mod flood;
@ -24,6 +25,7 @@ pub mod realnameban;
pub mod reputation;
pub mod restrictcommands;
pub mod restrictmsg;
pub mod securelist;
pub mod securitygroups;
pub mod serverban;
pub mod snoop;
@ -50,6 +52,7 @@ pub fn default_modules() -> Vec<Box<dyn Module>> {
Box::new(restrictmsg::RestrictMsg),
Box::new(blockamsg::BlockAmsg),
Box::new(connectban::ConnectBan),
Box::new(securelist::SecureList),
]
}