Tip of the day: The IRCOp guide shows how to do everyday IRCOp tasks and contains tips on fighting spam and drones.

Translations:Set block/185/en

From UnrealIRCd documentation wiki
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.