You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by sc...@apache.org on 2017/02/24 09:11:10 UTC

svn commit: r1784248 - in /manifoldcf/trunk: CHANGES.txt connectors/slack/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/slack/SlackConnector.java

Author: schuch
Date: Fri Feb 24 09:11:10 2017
New Revision: 1784248

URL: http://svn.apache.org/viewvc?rev=1784248&view=rev
Log:
Fix for CONNECTORS-1381

Modified:
    manifoldcf/trunk/CHANGES.txt
    manifoldcf/trunk/connectors/slack/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/slack/SlackConnector.java

Modified: manifoldcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1784248&r1=1784247&r2=1784248&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Fri Feb 24 09:11:10 2017
@@ -3,9 +3,12 @@ $Id$
 
 ======================= 2.7-dev =====================
 
+CONNECTORS-1381: Fix slack notification connector not to send the proxy
+password to the client in plaintext
+(Markus Schuch)
+
 CONNECTORS-1380: DropBox connector editSpecification.js velocity template incorrect variable
 (Kishore Kumar)
-
 CONNECTORS-1378: History reports End time year resets to Start Time year
 (Kishore Kumar)
 

Modified: manifoldcf/trunk/connectors/slack/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/slack/SlackConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/slack/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/slack/SlackConnector.java?rev=1784248&r1=1784247&r2=1784248&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/slack/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/slack/SlackConnector.java (original)
+++ manifoldcf/trunk/connectors/slack/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/slack/SlackConnector.java Fri Feb 24 09:11:10 2017
@@ -339,7 +339,7 @@ public class SlackConnector extends org.
     if(proxyPassword == null) {
       proxyPassword = StringUtils.EMPTY;
     } else {
-      mapper.mapPasswordToKey(proxyPassword);
+      proxyPassword = mapper.mapPasswordToKey(proxyPassword);
     }
 
     String proxyDomain = getEmptyOnNull(parameters, SlackConfig.PROXY_DOMAIN_PARAM);