Alex Andrushchak wrote:
There are my two methods from my MailerBean:
> [...]
message.setRecipients(Message.RecipientType.TO, toRecipients);
There is an unresolved bug in Geronimo-1.0 (GERONIMO-1402) causing
setRecipients to behave exactly as you are experiencing - the address is
not recognized at all, so e.g. misconfiguring the SMTP server will not
trigger any errors (because the message is never sent).
Could you try calling the
message.addRecipients(Message.RecipientType, String)
method instead and report here whether that changes the behaviour?
Jakob