Tip of the day: Channel mode +P makes a channel permanent. The topic and modes are preserved,even if all users leave the channel, and even if the server is restarted thanks to channeldb. |
Translations:Set block/185/en
Jump to navigation
Jump to search
set::spamfilter::except
In UnrealIRCd 6.1.7 and later this is a Mask item that defines who/what should not be included in Spamfilter matching. This can be used to exempt destinations, like:
set {
spamfilter {
except {
destination { "#help"; "#help2"; "ReportSpamToMeBot"; }
}
}
}
But it can also be used to exempt security groups, IP's and everything (though you could also have used the Except ban block for that), eg:
set {
spamfilter {
except {
security-group { trusted-users; }
ip { 192.168.*; }
}
}
}
See also all the (many!) items in Mask item that are available to select on, such as connect-time, reputation-score, etc.