dccallow: block unwanted DCC sends/chat + DCCALLOW +/-/LIST allow-list command

This commit is contained in:
Jean Chevronnet 2026-08-09 23:08:25 +00:00
parent 61954f6c5c
commit 0bf6992d8a
3 changed files with 226 additions and 0 deletions

View file

@ -16,6 +16,7 @@ pub mod conn_waitpong;
pub mod connectban;
pub mod connflood;
pub mod customtitle;
pub mod dccallow;
pub mod denychans;
pub mod disable;
pub mod dnsbl;
@ -84,6 +85,7 @@ pub fn default_modules() -> Vec<Box<dyn Module>> {
Box::new(randquote::RandQuote),
Box::new(disable::Disable),
Box::new(maphide::MapHide),
Box::new(dccallow::DccAllow),
]
}
@ -116,6 +118,7 @@ pub fn module_commands() -> Vec<Box<dyn Command>> {
.chain(tline::commands())
.chain(rmode::commands())
.chain(customtitle::commands())
.chain(dccallow::commands())
.chain(geoip::commands())
.collect()
}