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.

User credentials should not be logged under any circumstances. (fixes #365)

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

octorian da9f4df7 c16d0132

+4 -5
+1 -2
LogicMail/src/org/logicprobe/LogicMail/mail/imap/ImapProtocol.java
··· 138 138 throws IOException, MailException { 139 139 if (EventLogger.getMinimumLevel() >= EventLogger.DEBUG_INFO) { 140 140 EventLogger.logEvent(AppInfo.GUID, 141 - ("ImapProtocol.executeLogin(\"" + username + "\", \"" + 142 - password + "\")").getBytes(), EventLogger.DEBUG_INFO); 141 + ("ImapProtocol.executeLogin(\"****\", \"****\")").getBytes(), EventLogger.DEBUG_INFO); 143 142 } 144 143 145 144 this.selectedMailbox = "";
+2 -2
LogicMail/src/org/logicprobe/LogicMail/mail/pop/PopProtocol.java
··· 140 140 if(EventLogger.getMinimumLevel() >= EventLogger.DEBUG_INFO) { 141 141 EventLogger.logEvent( 142 142 AppInfo.GUID, 143 - ("PopProtocol.executeUser(\""+username+"\")").getBytes(), 143 + ("PopProtocol.executeUser(\"****\")").getBytes(), 144 144 EventLogger.DEBUG_INFO); 145 145 } 146 146 try { ··· 158 158 if(EventLogger.getMinimumLevel() >= EventLogger.DEBUG_INFO) { 159 159 EventLogger.logEvent( 160 160 AppInfo.GUID, 161 - ("PopProtocol.executePass(\""+password+"\")").getBytes(), 161 + ("PopProtocol.executePass(\"****\")").getBytes(), 162 162 EventLogger.DEBUG_INFO); 163 163 } 164 164 try {
+1 -1
LogicMail/src/org/logicprobe/LogicMail/mail/smtp/SmtpProtocol.java
··· 139 139 if(EventLogger.getMinimumLevel() >= EventLogger.DEBUG_INFO) { 140 140 EventLogger.logEvent( 141 141 AppInfo.GUID, 142 - ("SmtpProtocol.executeAuth("+mech+", \""+username+"\", \""+password+"\")").getBytes(), 142 + ("SmtpProtocol.executeAuth("+mech+", \"****\", \"****\")").getBytes(), 143 143 EventLogger.DEBUG_INFO); 144 144 } 145 145