If I remember correctly the reply from the server for that sort of message is in the form of a
"numeric response" and you have to use the BaseAWTSource class to look for the numeric I think. Again I suspect that the numeric involved is "404 ERR_CANNOTSENDTOCHAN". It should be returned to the default source as a notice to the user, but I may be wrong about that too.
I thought there was a switch to send notices to the default source rather then to status???
Maybe I'm thinking of something else.
Anyway in the pixx folder you will find BaseAWTSource.java to which I think you will need to add the code to check for this notice in one of the following functions.
- Code: Select all
public void reportReceived(String msg,Source source)
{
print(msg);
}
public void noticeReceived(String from,String msg,Source source)
{
print("-"+from+"- "+msg,5);
}
At the very least you could add debug code to find out what it is that the server sends out when you make a failed attempt.

Go on.
Tell me I'm not nice again.
See what it gets you!
*******************************
Lost or confused?
Read the
announcement topic in the
Technical Support forum for help tips.
*******************************