Page 1 of 1

how can this????? i need help!!!!!!!!

Posted: Sun Mar 01, 2009 1:19 pm
by zombie23
How can i change the [clients] from the line bellow
Client connecting on port 7000: Guest02705 ([email protected]) [clients]

To say:
Client connecting on port 7000: Guest02705 ([email protected]) [java]


i tried to do this using allow and port listen

allow {
ip *@*;
hostname *!javauser@*;
class java;
password "saleas";
maxperip 2;
};


class java
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};

listen *:7000
{
options
{
java;
};
};



I Use The PJIRC Java Applet Version 2.2.2,And Im Using UnrealIRCd3.2.7.
Any idea could be thoughtful!!! Many Thanks :)
thanks

Re: how can this????? i need help!!!!!!!!

Posted: Mon Mar 02, 2009 8:05 am
by Casper
I don't see why this would be necessary. Anyone can take 'javauser' as ident in for example mIRC and then I would also be marked as a Java webchat user.

However, you'll need to edit the source code which is not to be discussed of around here.

Re: how can this????? i need help!!!!!!!!

Posted: Tue Mar 03, 2009 8:45 am
by Jobe
Assuming the allow blocks are in the right order, the config pasted above should work.

Re: how can this????? i need help!!!!!!!!

Posted: Tue Mar 03, 2009 10:13 pm
by zEkE
Would I be correct in saying that as posted, the hostname shouldn't include the "*!" for nick, and that the IP of *@* should be nullified, as only the ip OR the hostname needs to match for an allow block to apply - so hostname *javauser@* and ip *@255.255.255.255 ?

Re: how can this????? i need help!!!!!!!!

Posted: Thu Mar 05, 2009 2:10 pm
by zombie23
zEkE wrote:Would I be correct in saying that as posted, the hostname shouldn't include the "*!" for nick, and that the IP of *@* should be nullified, as only the ip OR the hostname needs to match for an allow block to apply - so hostname *javauser@* and ip *@255.255.255.255 ?

so i should do it like this?

allow {
ip *@255.255.255.255;
hostname *javauser@*;
class java;
password "saleas";
maxperip 2;
};

i tried it like you said but it didn't worked!