public void message(String to, String from, Serializable payload)
{
Mailbox mailbox = getMailbox(to);
if (mailbox != null) {
mailbox.message(to, from, payload);
return;
}
// on startup, queue the messages until the startup completes
if (isBeforeActive() && addStartupPacket(new Message(to, from, payload))) {