Have you solved this issue?
In JpdlParser.java is written:
// parse notification mail producer
Element notificationElement = XmlUtil.element(element, "notification");
if (notificationElement != null) {
parseMailEvent(notificationElement, parse, scopeElement, Event.ASSIGN);
}
From this I guess that notifications are only sent when task is assigned to someone. From my tests even assignment to null works :)
I don't know whether chaging it to Event.START would break anyting or not. Any ideas?
Martin