git clone of logicmail with some fixes/features added
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove invalid Email address from exception's toString() to prevent logging of it

git-svn-id: https://logicmail.svn.sourceforge.net/svnroot/logicmail/trunk@947 5c734088-3d25-0410-9155-b3c3832efda5

octorian 24aa3a60 3f969bdc

+5 -1
+5 -1
LogicMail/src/org/logicprobe/LogicMail/mail/RecipientException.java
··· 57 57 * @param cause the cause 58 58 */ 59 59 public RecipientException(int recipientType, String address) { 60 - super(resources.getString(LogicMailResource.ERROR_RECIPIENT) + ' ' + address, false, recipientType); 60 + super(resources.getString(LogicMailResource.ERROR_RECIPIENT), false, recipientType); 61 61 this.address = address; 62 62 } 63 63 ··· 68 68 */ 69 69 public String getAddress() { 70 70 return address; 71 + } 72 + 73 + public String getMessage() { 74 + return resources.getString(LogicMailResource.ERROR_RECIPIENT) + ' ' + address; 71 75 } 72 76 }