Page 1 of 1

Aliases trouble

Posted: Sun Dec 28, 2008 4:49 am
by Arok
Good evening!
We recently migrated over to our new dedicated server but it seems that, during the process, we lost our ability to use commands such as /ns or /nickserv. However, the "include" anope.conf/aliases.conf is still in our unrealircd.conf and we have rehashed many times without any error messages and it still doesn't work.

So, out of ideas as to why it might not be working, I turn to you guys hoping you might have a solution.

Here's the config as well as the aliases included, just in case there's something wrong.

Many thanks in advance.
Arok

(PS - All the other includes are working fine as far as we know, the server has been running like that for a very long time without any troubles when we modified o:lines and such. Only the aliases are giving us troubles.)

unrealircd.conf only has an include that links to this includes.conf:

Code: Select all

// Automatique updated conf
include "public/drpass.conf";
include "public/classes.conf";
include "public/allow.conf";
include "public/listen.conf";
include "public/opers.conf";
include "public/ulines.conf";
include "private/links.conf";
include "public/tld.conf";
include "public/info.conf";
include "public/bans.conf";
include "public/excepts.conf";
include "public/redirects.conf";
include "public/vhosts.conf";
include "public/dccallow.conf";
include "public/logs.conf";
include "public/help.conf";
include "public/badwords.conf";
include "public/spamfilters.conf";
include "public/ochans.conf";
include "public/aliases/anope.conf";
include "public/aliases/aliases.conf";
include "public/modules.conf";
include "public/networks/idapnet.network";
include "public/networks/idapnet.settings";
include "public/dns.conf";
include "public/cidrs.conf";
here is public/aliases/anope.conf

Code: Select all

// Anope Aliases

alias "ChanServ" {
        nick "ChanServ";
        type services;
};

alias "cs" {
        nick "ChanServ";
        type services;
};

alias "NickServ" {
        nick "NickServ";
        type services;
};

alias "ns" {
        nick "NickServ";
        type services;
};

alias "BotServ" {
        nick "BotServ";
        type services;
};

alias "bs" {
        nick "BotServ";
        type services;
};

alias "HelpServ" {
        nick "HelpServ";
        type services;
};

alias "he" {
        nick "HelpServ";
        type services;
};

alias "OperServ" {
        nick "OperServ";
        type services;
};

alias "os" {
        nick "OperServ";
        type services;
};

alias "MemoServ" {
        nick "MemoServ";
        type services;
};

alias "ms" {
        nick "MemoServ";
        type services;
};

alias "HostServ" {
        nick "HostServ";
        type services;
};

alias "hs" {
        nick "HostServ";
        type services;
};
And lastly, here is /public/aliases/aliases.conf

Code: Select all

// Standard Aliases

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

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

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

Re: Aliases trouble

Posted: Sun Dec 28, 2008 11:53 am
by Jobe
What error message are you getting when you try to use an alias?

Also check services-server in the set blocks is correct, remembering that it IS case sensitive, where "Services" is NOT the same as "services"

Re: Aliases trouble

Posted: Sun Dec 28, 2008 11:21 pm
by Arok
It was exactly that. Many thanks for helping out.

Arok