Page 1 of 1

Little trouble with security-group

Posted: Thu Aug 20, 2026 8:33 am
by CrazyCat
Hi there,
I made a security group:

Code: Select all

security-group trusted-users {
        reputation-score 9000;
        identified yes;
};
Quite simple.
But when I /whois someone:

Code: Select all

09:34 -- [UserX] is in security-groups: known-users,trusted-users,tls-users
09:34 -- [UserX] is using an IP with a reputation score of 5092
Score of 5092 but in trusted-users ? How is-it possible ?
Note that this security-group is quite old, the servers has been restarted several times since I add it...

Re: Little trouble with security-group

Posted: Thu Aug 20, 2026 9:46 am
by Kelerion
you might be looking for the following crule instead:

security-group trusted-users {
rule "is_identified() && reputation() >= 9000";
};

Kel.