The notification e-mails used to have a subject, but after this date they are gone.
The issue seems to be in NotifierController.java line 236, where I assume that you want the first 80 characters, but instead you do characters from index 80.
if (!mailer.send(addr, StringUtils.substring(msg, 80), date + "\n" + msg)) {
Hi.
The notification e-mails used to have a subject, but after this date they are gone. The issue seems to be in NotifierController.java line 236, where I assume that you want the first 80 characters, but instead you do characters from index 80.
http://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html#substring(java.lang.String, int)
BUT it should probably read:
I tried to building it myself, but run out of time....