Page 1 of 1

elines

Posted: Thu Jun 24, 2004 2:42 am
by niceguy
added this too ircd conf file:
except tkl {
mask *@*.qwest.net;
type gzline;
type gline;
type qline;
type gqline;
type shun;
};
but services is still able too set kline is there a way too exempt that as well? :x

Posted: Thu Jun 24, 2004 4:56 am
by aquanight
except ban {}

Posted: Thu Jun 24, 2004 7:16 am
by niceguy
i also have this line:
except ban {
/* don't ban stskeeps */
mask *@*.qwest.net;
}
;

Posted: Thu Jun 24, 2004 9:08 am
by AngryWolf
1. The except tkl block doesn't work with multiple types. Specify only one type, because only one will be accepted. If you want tkl exceptions for more types, multiply the except tkl block, like so:

except tkl { mask user@host; type gzline; };
except tkl { mask user@host; type gline; };
except tkl { mask user@host; type shun; };

2. qlines and gqlines are nickname bans. Having a (g)qline exception for a user@host mask is meaningless.

3. I think you know this, but: it's always good to use both the except ban and except tkl blocks, because they are both required to protect you from every kind of user@host bans.

4. Why don't you remove "/* don't ban stskeeps */" from your config? :) That comment has something to do only with the example configuration, and is totally unrelated to yours.