Page 1 of 1
Querys
Posted: Fri Jan 19, 2007 7:01 pm
by George
Hi ,
is it possible unrealircd to take off Querys ?
Also i meen that Querys impossible.
Sorry for my very bad english !
Greets
George
Posted: Fri Jan 19, 2007 7:07 pm
by SpaceDoG
Are you talking about SQL George? There are some modules that have SQL capabilities, however you have to pay for those modules.
Posted: Fri Jan 19, 2007 7:10 pm
by George
I dont talk about sql.
I will forbid Querys on my server with unreal.
Thats all

Posted: Fri Jan 19, 2007 7:38 pm
by Jobe
I think he means disable private messaging, which in doing so would also disable channel messages too making his IRCd pointless.
The alternative is to put some processing into the NOTICE and PRIVMSG commands that disallows using a regular nick as a target but that would create quite a server load processing every message in this way.
Posted: Fri Jan 19, 2007 8:23 pm
by Dukat
oh well...
You could use Syzop's PrivDeaf module and use modes-on-connect and set::restrict-usermodes to lock usermode +D....
Posted: Mon Jan 22, 2007 8:16 pm
by George
Ok i have the module compiled in unreal
How i activate it ?
Can i set the +D for all users ?
Greets
George
Posted: Mon Jan 22, 2007 11:44 pm
by coxy
Yeah, It'll ignore all private messages/notices.
The better one is
callerid
Code: Select all
Description: This module provides an implementation of hybrid's "callerid" mode. By setting a usermode, users will not receive private messages as normal, unless they allow a user to send messages by using /accept nickname.
Posted: Tue Jan 23, 2007 12:32 am
by Stealth
coxy wrote:The better one is
callerid
Code: Select all
Description: This module provides an implementation of hybrid's "callerid" mode. By setting a usermode, users will not receive private messages as normal, unless they allow a user to send messages by using /accept nickname.
Not what he wanted though.
You can set mode +D on all users, and restrict it by adding this to your unrealircd.conf:
Code: Select all
set {
modes-on-connect "D";
restrict-usermodes "D";
};
Posted: Sun Jun 03, 2007 11:36 pm
by koolg
Stealth wrote:coxy wrote:
You can set mode +D on all users, and restrict it by adding this to your unrealircd.conf:
Code: Select all
set {
modes-on-connect "D";
restrict-usermodes "D";
};
Is this right?
Posted: Mon Jun 04, 2007 12:57 pm
by SpaceDoG
Yes that is correct.