spamfilter {
regex "[A-Z]{20}";
target { channel; };
action block;
reason "Drop Your Caps!";
};
but it blocks also words with letters more than 20 and normal msg's
How can i block Caps letters only? Thx
Code: Select all
regex "(?-i)[A-Z]{20}";Code: Select all
regex "(?-i)[A-Z ]{20}";