kudos with another problem, anope service aliases

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
shock
Posts: 6
Joined: Fri Dec 09, 2005 12:25 pm

kudos with another problem, anope service aliases

Post by shock »

ok so services get called when i pm them, but aliases are not working (i am almost at the root of the problem, so this shouldnt take long)
eg..
when I do /msg chanserv help
the anope -debug -nofork mode shows..

[Dec 10 00:29:53 2005] debug: Received: :Shock PRIVMSG operserv :help
[Dec 10 00:29:53 2005] OperServ: Shock: help

but when i do /nickserv help..
input going in is..

[Dec 10 00:39:36 2005] debug: Received: :Shock PRIVMSG [email protected] :help

so how do i solve this problem..

my aliases in unrealircd.conf are
alias nickserv { type services; };
alias ns { target nickserv; type services; };
alias chanserv { type services; };
alias cs { target chanserv; type services; };
alias memoserv { type services; };
alias ms { target memoserv; type services; };
alias operserv { type services; };
alias os { target operserv; type services; };
alias helpserv { type services; };
alias botserv { type services; };
alias bs { target botserv; type services; };
alias hostserv { type services; };
alias hs { target hostserv; type services; };

alias identify {
format "^#" {
target chanserv;
type services;
parameters "IDENTIFY %1-";
};
format "^[^#]" {
target nickserv;
type services;
parameters "IDENTIFY %1-";
};
type command;
};

alias services {
format "^#" {
target chanserv;
type services;
parameters "%1-";
};
format "^[^#]" {
target nickserv;
type services;
parameters "%1-";
};
type command;
};

alias register {
format "^#" {
target chanserv;
type services;
parameters "REGISTER %1-";
};
format "^[^#]" {
target nickserv;
type services;
parameters "REGISTER %1-";
};
type command;
};

so any idea?
Gavin
Posts: 3
Joined: Sat Jun 18, 2005 2:43 pm
Location: Johannesburg, South Africa

Post by Gavin »

that seems right. where do you out that. in your server config file or do you called it.

Send me the link to your server and i will come help you
Trystan
Posts: 29
Joined: Sun Mar 07, 2004 4:20 pm
Location: UTAH
Contact:

Post by Trystan »

Having the alias file in Unreal is only part of it..

set::services-server name must match the ServerName from the anope config, othwise anope will not realize the message is for it and ignore the message
"They never stop thinking of ways of harming America, and neither do we." - U.S. President George W. Bush
Locked