https://github.com/codelibs/fess-ds-sharepoint
DataStore Crawler for SharePoint
https://github.com/codelibs/fess-ds-sharepoint
Last synced: 4 months ago
JSON representation
DataStore Crawler for SharePoint
- Host: GitHub
- URL: https://github.com/codelibs/fess-ds-sharepoint
- Owner: codelibs
- License: apache-2.0
- Created: 2020-08-02T17:26:57.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2026-01-29T05:43:00.000Z (5 months ago)
- Last Synced: 2026-01-29T21:43:03.846Z (5 months ago)
- Language: Java
- Size: 418 KB
- Stars: 6
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
SharePoint Data Store for Fess
[](https://github.com/codelibs/fess-ds-sharepoint/actions/workflows/maven.yml)
==========================
## Overview
SharePoint Data Store for Fess.
## Download
See [Maven Repository](https://repo1.maven.org/maven2/org/codelibs/fess/fess-ds-sharepoint/).
## Installation
1. Download fess-ds-sharepoint-X.X.X.jar
2. Copy fess-ds-sharepoint-X.X.X.jar to $FESS\_HOME/app/WEB-INF/lib or /usr/share/fess/app/WEB-INF/lib
## Crawling Setting
### List Crawl
```
# Parameter
url={URL of SharePoint}
auth.ntlm.user={Name of SharePoint User}
auth.ntlm.password={Passsword}
site.name={SiteName of crawling target}
site.list_name={ListName of crawling target}
## (Option parameter)
list.item.content.include_fields={FieldName to include to content.}
list.item.content.exclude_fields={FieldName to exclude to content.}
## SharePoint2013
sp.version=2013
# Script
url=url
host=host
site=site
title="["+list_name+"]"+title
content=content
cache=content
digest=digest
content_length=content.length()
last_modified=last_modified
created=created
timestamp=last_modified
mimetype=mimetype
filetype=filetype
```
### Document Library Crawl
```
# Parameter
url={URL of SharePoint}
auth.ntlm.user={Name of SharePoint User}
auth.ntlm.password={Passsword}
site.name={SiteName of crawling target}
site.doclib_path={DocumentLibrary path. Ex) /Shared Documents}
## SharePoint2013
sp.version=2013
# Script
url=url
host=host
site=site
title=title
content=content
cache=content
digest=digest
content_length=content.length()
last_modified=last_modified
created=created
timestamp=last_modified
mimetype=mimetype
filetype=filetype
```