Querys

These are old archives. They are kept for historic purposes only.
Post Reply
George
Posts: 3
Joined: Fri Jan 19, 2007 6:58 pm

Querys

Post 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
SpaceDoG
Posts: 301
Joined: Mon Feb 27, 2006 5:44 am
Contact:

Post by SpaceDoG »

Are you talking about SQL George? There are some modules that have SQL capabilities, however you have to pay for those modules.
George
Posts: 3
Joined: Fri Jan 19, 2007 6:58 pm

Post by George »

I dont talk about sql.

I will forbid Querys on my server with unreal.

Thats all :)
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Post 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.
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

oh well... :?
You could use Syzop's PrivDeaf module and use modes-on-connect and set::restrict-usermodes to lock usermode +D....
If you don't make mistakes, you aren't really trying.
- Coleman Hawkins
George
Posts: 3
Joined: Fri Jan 19, 2007 6:58 pm

Post by George »

Ok i have the module compiled in unreal
How i activate it ?

Can i set the +D for all users ?


Greets
George
coxy
Posts: 17
Joined: Fri Jun 30, 2006 2:51 pm
Location: myanmar
Contact:

Post by coxy »

Code: Select all

/mode nick +D
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.
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post 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";
};
koolg
Posts: 4
Joined: Sat Jun 02, 2007 11:36 am

Post 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?
SpaceDoG
Posts: 301
Joined: Mon Feb 27, 2006 5:44 am
Contact:

Post by SpaceDoG »

Yes that is correct.
Post Reply