Usermode +x - more masking?

These are old archives. They are kept for historic purposes only.
Locked
error404
Posts: 2
Joined: Tue Apr 27, 2004 12:36 am

Usermode +x - more masking?

Post by error404 »

Is it possible to make the +x mode mask the entire address, not just the lowest level, or would it be an easy patch? Also, is it possible to force usermode +x on all users?
codemastr
Former UnrealIRCd head coder
Posts: 811
Joined: Sat Mar 06, 2004 8:47 pm
Location: United States
Contact:

Post by codemastr »

set {
modes-on-connect "+x";
}

That will force +x. And no, Unreal contains no option to mask the entire host.
-- codemastr
aquanight
Official supporter
Posts: 862
Joined: Tue Mar 09, 2004 10:47 pm
Location: Boise, ID

Post by aquanight »

To be more slightly accurate:

Code: Select all

set {
    modes-on-connect "+x";
    restrict-usermodes "x";
};
This will add the effect of not allowing users to change the +x option once they get it.
error404
Posts: 2
Joined: Tue Apr 27, 2004 12:36 am

Post by error404 »

aquanight wrote:To be more slightly accurate:

Code: Select all

set {
    modes-on-connect "+x";
    restrict-usermodes "x";
};
This will add the effect of not allowing users to change the +x option once they get it.
Thanks, that's what I was looking for. Anyone know where in the source I can find the code that applies the mask to the hostname?
AngryWolf
Posts: 554
Joined: Sat Mar 06, 2004 10:53 am
Location: Hungary
Contact:

Post by AngryWolf »

That's a sort of question that isn't welcomed and shouldn't be asked at all. See the Modifying UnrealIRCd topic.
jewles
Posts: 263
Joined: Thu Mar 11, 2004 7:41 pm
Location: Herndon, VA

Post by jewles »

Danger, Danger, Danger, Will Roberson DANGER!
We don't in anyway support modifying all or any part of Unreal.


:evil: :evil: :evil: :evil: :evil: :evil: <=== my evil army!
FBSD-DEV Project
http://www.fbsd-dev.org

YatesDev Hosting
http://www.yatesdev.com

The Wrong Way
http://www.thewrongway.net
Locked