From commits-return-10006-archive-asf-public=cust-asf.ponee.io@manifoldcf.apache.org Tue Apr 23 06:49:06 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 27EE3180621 for ; Tue, 23 Apr 2019 08:49:06 +0200 (CEST) Received: (qmail 68824 invoked by uid 500); 23 Apr 2019 06:49:05 -0000 Mailing-List: contact commits-help@manifoldcf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@manifoldcf.apache.org Delivered-To: mailing list commits@manifoldcf.apache.org Received: (qmail 68815 invoked by uid 99); 23 Apr 2019 06:49:05 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Apr 2019 06:49:05 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 0707F3A0C8B for ; Tue, 23 Apr 2019 06:49:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1857988 - /manifoldcf/branches/CONNECTORS-1498/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java Date: Tue, 23 Apr 2019 06:49:00 -0000 To: commits@manifoldcf.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20190423064901.0707F3A0C8B@svn01-us-west.apache.org> Author: kwright Date: Tue Apr 23 06:49:00 2019 New Revision: 1857988 URL: http://svn.apache.org/viewvc?rev=1857988&view=rev Log: Also add jcifs properties Modified: manifoldcf/branches/CONNECTORS-1498/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java Modified: manifoldcf/branches/CONNECTORS-1498/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1498/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java?rev=1857988&r1=1857987&r2=1857988&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1498/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java (original) +++ manifoldcf/branches/CONNECTORS-1498/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java Tue Apr 23 06:49:00 2019 @@ -114,7 +114,18 @@ public class SharedDriveConnector extend if (System.getProperty("jcifs.smb.client.responseTimeout") == null) { System.setProperty("jcifs.smb.client.responseTimeout","120000"); } - + if (System.getProperty("jcifs.smb.client.minVersion") == null) { + System.setProperty("jcifs.smb.client.minVersion","SMB1"); + } + if (System.getProperty("jcifs.smb.client.maxVersion") == null) { + System.setProperty("jcifs.smb.client.maxVersion","SMB210"); + } + if (System.getProperty("jcifs.traceResources") == null) { + System.setProperty("jcifs.traceResources","true"); + } + if (System.getProperty("jcifs.smb.client.ipcSigningEnforced") == null) { + System.setProperty("jcifs.smb.client.ipcSigningEnforced","true"); + } // Don't change these!! System.setProperty("jcifs.smb.client.listCount","20"); System.setProperty("jcifs.smb.client.dfs.strictView","true");