Norman Maurer wrote:
Ok i see a NullPointer exception in the spool log.The NullPointer is thrown when do : String sender = mail.getSender().toString().toLowerCase(); how can that throw a nullpointer ?
This throws an NPE when mail is null or mail.getSender() return null. toString() should not be null for a non null object. Stefano --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
