anope -> Botserv problem with sendq ! HELP

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
TuX
Posts: 2
Joined: Thu Nov 25, 2004 8:46 pm

anope -> Botserv problem with sendq ! HELP

Post by TuX »

Hey, everytime i wanna let botserv bot join a channel the services crashes and i get :

Code: Select all

[21:43:02] -BotServ- Bot System has been assigned to #Lobby.
-
[21:43:07] -217.160.106.43- *** Notice -- Max SendQ limit exceeded for services.more-fun.net[217.160.106.43]: 1000031 > 1000000
-
[21:43:07] -217.160.106.43- *** Global -- Closing link: Max SendQ exceeded - services.more-fun.net[217.160.106.43]

Code: Select all

class           servers
{
        pingfreq 90;
        maxclients 10;         
        sendq 1000000;
        connfreq 100; 
};
but no matter how high i set the sendq for "class servers" it alwas is 1 above my value :( what can i do ?
AngryWolf
Posts: 554
Joined: Sat Mar 06, 2004 10:53 am
Location: Hungary
Contact:

Post by AngryWolf »

Seems like you are having the exact same problem that was posted to the official Anope Forum at http://www.anope.org/postt1448.html, the second post there should help. If not, also read aquanight's post in the SearchIRC Discussion Forum about U:Lines. (And consider using Google before asking questions. :-P)
TuX
Posts: 2
Joined: Thu Nov 25, 2004 8:46 pm

Post by TuX »

well there is no solution given there ..
i have the Ulines ..... and else .. they just say.. Oh, we fixed it. but don't give HOW !

services.conf

Code: Select all

ServiceUser "[email protected]"
ServerName  "services.more-fun.net"
unrealircd.conf

Code: Select all

link            services.more-fun.net
{
        username        *;
        hostname        services.more-fun.net;
        bind-ip         *;
        port            7029;
        hub             *;
        password-connect "serverpass";
        password-receive "serverpass";
        class           servers;
};
ulines {
        services.more-fun.net;
        stats.more-fun.net;
};
Locked