Anope and /Nickserv not working, /msg nickserv works

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
ChevronNine
Posts: 5
Joined: Fri Mar 19, 2004 4:50 am
Location: Minneapolis, MN
Contact:

Anope and /Nickserv not working, /msg nickserv works

Post by ChevronNine »

Interesting issue... I am maving form LakeServ to Anope services (1.6.2 I believe). I have changed the aliases include to anope and it all seems to work ok... Except I can't access services directly from /, I have to /msg them. I don't seem to be getting any error message, it just does nothing. If I turn off the include, it gives an error with something like 'unknown channel'

I asked the boys over at Anope and they told me to venture here. Ideas?

Thanks,

BJH
Cable
Posts: 3
Joined: Sat Mar 13, 2004 8:01 am

Post by Cable »

include "aliases/anope.conf"; :wink:
codemastr
Former UnrealIRCd head coder
Posts: 811
Joined: Sat Mar 06, 2004 8:47 pm
Location: United States
Contact:

Post by codemastr »

Is your set::services-server setup correctly? It should be set to the server name of Anope.
-- codemastr
jailmann
Posts: 81
Joined: Wed Apr 28, 2004 9:51 am

Post by jailmann »

Hallo

open Unreaircd.conf and find this line

/* Standard aliases */

at the end of that line coy and past this

alias ns { nick nickserv; type services; };
alias cs { nick chanserv; type services; };

then the full line will be

/* Standard aliases */
alias NickServ { type services; };
alias ChanServ { type services; };
alias OperServ { type services; };
alias HelpServ { type services; };
alias StatServ { type stats; };
alias ns { nick nickserv; type services; };
alias cs { nick chanserv; type services; };
server_crash
Posts: 2
Joined: Tue Oct 19, 2004 1:23 pm

Post by server_crash »

if you add this to your .conf, all services alias' will work
replace the ones you currently have with these

// This points the command /nickserv to the user NickServ who is connected to the set::services-server server

alias ns {
nick "NickServ";
type services;
};
alias cs {
nick "ChanServ";
type services;
};
alias ms {
nick "MemoServ";
type services;
};
alias os {
nick "OperServ";
type services;
};
alias hst {
nick "HostServ";
type services;
};
alias bs {
nick "BotServ";
type services;
};
alias hs {
nick "HelpServ";
type services;
};
alias con {
nick "connectserv";
type services;
};
alias neo {
nick "neostats";
type services;
};
alias sec {
nick "secureserv";
type services;
};
alias stat {
nick "statserv";
type services;
};
// If you want the command to point to the same nick as the command, you can leave the nick entry out
//alias ChanServ { type services; };

// Points the /statserv command to the user StatServ on the set::stats-name server
//alias StatServ { type stats; };

// Points the /superbot command to the user SuperBot
//alias SuperBot { type normal; };


alias NickServ { type services; };
alias ChanServ { type services; };
alias OperServ { type services; };
alias HelpServ { type services; };
alias BotServ { type services; };
alias HostServ { type services; };
alias MemoServ { type services; };
alias Connectserv { type services; };
alias Neostats { type services; };
alias Secureserv { type services; };
alias Statserv { type services; };
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

server_crash, don't post in such an old thread... this problem was obviously solved months ago...
And your solution is basically the same as jailmann's or even Cable's.
toxhi
Posts: 5
Joined: Sun Oct 10, 2004 3:16 pm

Post by toxhi »

I think it would be wize of me to say:
"Don't help, if you don't know how to help, let people who know how to help, help!"
:)
server_crash
Posts: 2
Joined: Tue Oct 19, 2004 1:23 pm

Post by server_crash »

i was just including an almost full list of the common alias' in case anyone else needed help with it :-/
Locked