If I disconnect from muh while channels are joined, and
I connect again, the channel windows don't open, but
the BNC is still in the channels. And if I for example
was in the channel "#channel", "(00:41:02) —› no such
channel: (channel)" shows up in the status window. This
happens regardless to the values of the "channels" and
"leave" variables in "muhrc".
I'm using mIRC 6.16, and I haven't tested with any
other clients than mIRC.
Logged In: NO
I forgot to mention that this forum post regards the same
problem:
http://sourceforge.net/forum/forum.php?thread_id=1240324&forum_id=159864
Logged In: NO
I have this problem also, muh tries to join the channels
without a # infront of their names as far as I can see. I
may be wrong but I think it might be something to do with
the list_channels() function...
Logged In: YES
user_id=1444002
I have the same issues too, i have to restart the bnc in
order to get it to connect to the channels again.
Even disconnecting from the channels and trying to reconnect
doesn't seem to fix it, so a restart it seems is the only
option - which kinda defeats the purpose of a bnc :)
system: Fedora Core 4 linux, compiled from source v2.2
using: X-Chat Client from a windows machine
Logged In: NO
Seems version 2.2beta1 has the same problem too!
Logged In: YES
user_id=1204874
Can't reproduce the problem.
Which IRC networks do you use?
Logged In: YES
user_id=1669409
Originator: NO
I have the same problem.
In my case I have problems with Quakenet and mIRC.
It works fine in Irssi
When I rejoin the bnc no channel windows opens, but the client is still in the chans
Logged In: NO
- confirmed. This problem occurs no matter what client is used. A reconnect sometimes solves this problem.
Logged In: NO
This occurs for example in Quakenet and it indeed seems that muh tries to join the channels without "#" in them. Seems to work in some networks for some reason..
Logged In: NO
I've had the same issues with muh-2.2a built on ppc for fedora 8, and connecting with xchat-2.6.8 for win32. sorry for the anonymous name but I don't have a sourceforge account.
Logged In: NO
if(!status.startup)
{
if(cfg.channels)
{
report( MUH_JOINING, cfg.channels );
irc_write( &c_server, "JOIN %s", cfg.channels );
}
time(&status.startup);
}
else if((cfg.rejoin == 1) && (chns = list_channels()))
{
report( MUH_REJOINING, chns );
irc_write( &c_server, "JOIN #%s", chns );
drop_channels();
}
else if((cfg.rejoin == 2) && cfg.channels)
{
report(MUH_REJOINING, cfg.channels);
irc_write(&c_server, "JOIN #%s", cfg.channels);
drop_channels();
}