dccallow: block unwanted DCC sends/chat + DCCALLOW +/-/LIST allow-list command
This commit is contained in:
parent
61954f6c5c
commit
0bf6992d8a
3 changed files with 226 additions and 0 deletions
|
|
@ -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()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue