mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-15 06:01:19 +00:00
add missing conf vars, fix indenting
This commit is contained in:
parent
47c29c18b0
commit
b2733a3cd9
|
@ -36,7 +36,7 @@
|
||||||
strictFormCheck = "false"
|
strictFormCheck = "false"
|
||||||
viewOnlineFileTypes = ".txt;.text;.html;.htm;.pdf;.gif;.png;.jpg;.jpeg"
|
viewOnlineFileTypes = ".txt;.text;.html;.htm;.pdf;.gif;.png;.jpg;.jpeg"
|
||||||
enableConverting = "true"
|
enableConverting = "true"
|
||||||
enableEmail = "true"
|
enableEmail = "true"
|
||||||
enableUsersView = "true"
|
enableUsersView = "true"
|
||||||
enableFullSearch = "false"
|
enableFullSearch = "false"
|
||||||
enableFolderTree = "true"
|
enableFolderTree = "true"
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
enableLanguageSelector = "true"
|
enableLanguageSelector = "true"
|
||||||
stopWordsFile = ""
|
stopWordsFile = ""
|
||||||
sortUsersInList = ""
|
sortUsersInList = ""
|
||||||
sortFoldersDefault="s"
|
sortFoldersDefault="s"
|
||||||
>
|
>
|
||||||
</edition>
|
</edition>
|
||||||
<!-- enableCalendar: enable/disable calendar
|
<!-- enableCalendar: enable/disable calendar
|
||||||
|
@ -63,12 +63,12 @@
|
||||||
<!-- rootDir: Path to where SeedDMS is located
|
<!-- rootDir: Path to where SeedDMS is located
|
||||||
- httpRoot: The relative path in the URL, after the domain part. Do not include the
|
- httpRoot: The relative path in the URL, after the domain part. Do not include the
|
||||||
- http:// prefix or the web host name. e.g. If the full URL is
|
- http:// prefix or the web host name. e.g. If the full URL is
|
||||||
- http://www.example.com/seeddms/, set $_httpRoot = "/seeddms/".
|
- http://www.example.com/seeddms/, set $_httpRoot = "/seeddms/".
|
||||||
- If the URL is http://www.example.com/, set $_httpRoot = "/".
|
- If the URL is http://www.example.com/, set $_httpRoot = "/".
|
||||||
- contentDir: Where the uploaded files are stored (best to choose a directory that
|
- contentDir: Where the uploaded files are stored (best to choose a directory that
|
||||||
- is not accessible through your web-server)
|
- is not accessible through your web-server)
|
||||||
- stagingDir: Where partial file uploads are saved
|
- stagingDir: Where partial file uploads are saved
|
||||||
- luceneDir: Where the lucene fulltext index iѕ saved
|
- luceneDir: Where the lucene fulltext index iѕ saved
|
||||||
- logFileEnable: set false to disable log system
|
- logFileEnable: set false to disable log system
|
||||||
- logFileRotation: the log file rotation (h=hourly, d=daily, m=monthly)
|
- logFileRotation: the log file rotation (h=hourly, d=daily, m=monthly)
|
||||||
-->
|
-->
|
||||||
|
@ -82,20 +82,22 @@
|
||||||
logFileRotation = "d"
|
logFileRotation = "d"
|
||||||
enableLargeFileUpload = "true"
|
enableLargeFileUpload = "true"
|
||||||
partitionSize = "2000000"
|
partitionSize = "2000000"
|
||||||
|
dropFolderDir = ""
|
||||||
|
cacheDir = ""
|
||||||
>
|
>
|
||||||
</server>
|
</server>
|
||||||
|
|
||||||
<!-- enableGuestLogin: If you want anybody to login as guest, set the following line to true
|
<!-- enableGuestLogin: If you want anybody to login as guest, set the following line to true
|
||||||
- note: guest login should be used only in a trusted environment
|
- note: guest login should be used only in a trusted environment
|
||||||
- enablePasswordForgotten: Allow users to reset their password
|
- enablePasswordForgotten: Allow users to reset their password
|
||||||
- restricted: Restricted access: only allow users to log in if they have an entry in the local database (irrespective of successful authentication with LDAP).
|
- restricted: Restricted access: only allow users to log in if they have an entry in the local database (irrespective of successful authentication with LDAP).
|
||||||
- enableUserImage: enable users images
|
- enableUserImage: enable users images
|
||||||
- disableSelfEdit: if true user cannot edit his own profile
|
- disableSelfEdit: if true user cannot edit his own profile
|
||||||
- passwordStrength: minimum strength of password, set to 0 to disable
|
- passwordStrength: minimum strength of password, set to 0 to disable
|
||||||
- passwordExpiration: number of days after password expires
|
- passwordExpiration: number of days after password expires
|
||||||
- passwordHistory: number of remembered passwords
|
- passwordHistory: number of remembered passwords
|
||||||
- passwordStrengthAlgorithm: algorithm used to calculate password strenght (simple or advanced)
|
- passwordStrengthAlgorithm: algorithm used to calculate password strenght (simple or advanced)
|
||||||
- encryptionKey: arbitrary string used for creating identifiers
|
- encryptionKey: arbitrary string used for creating identifiers
|
||||||
-->
|
-->
|
||||||
<authentication
|
<authentication
|
||||||
enableGuestLogin = "false"
|
enableGuestLogin = "false"
|
||||||
|
@ -103,12 +105,12 @@
|
||||||
restricted = "true"
|
restricted = "true"
|
||||||
enableUserImage = "false"
|
enableUserImage = "false"
|
||||||
disableSelfEdit = "false"
|
disableSelfEdit = "false"
|
||||||
passwordStrength="0"
|
passwordStrength="0"
|
||||||
passwordExpiration="0"
|
passwordExpiration="0"
|
||||||
passwordHistory="0"
|
passwordHistory="0"
|
||||||
passwordStrengthAlgorithm="simple"
|
passwordStrengthAlgorithm="simple"
|
||||||
loginFailure="0"
|
loginFailure="0"
|
||||||
encryptionKey=""
|
encryptionKey=""
|
||||||
>
|
>
|
||||||
<connectors>
|
<connectors>
|
||||||
<!-- ***** CONNECTOR LDAP *****
|
<!-- ***** CONNECTOR LDAP *****
|
||||||
|
@ -146,8 +148,8 @@
|
||||||
port = "389"
|
port = "389"
|
||||||
baseDN = ""
|
baseDN = ""
|
||||||
accountDomainName = "example.com"
|
accountDomainName = "example.com"
|
||||||
bindDN=""
|
bindDN=""
|
||||||
bindPw=""
|
bindPw=""
|
||||||
>
|
>
|
||||||
</connector>
|
</connector>
|
||||||
</connectors>
|
</connectors>
|
||||||
|
@ -217,8 +219,8 @@
|
||||||
enableDuplicateDocNames = "true"
|
enableDuplicateDocNames = "true"
|
||||||
>
|
>
|
||||||
</edition>
|
</edition>
|
||||||
<!-- enableNotificationAppRev: true to send notifation if a user is added as a reviewer or approver
|
<!-- enableNotificationAppRev: true to send notifation if a user is added as a reviewer or approver
|
||||||
-->
|
-->
|
||||||
<notification
|
<notification
|
||||||
enableNotificationAppRev = "true"
|
enableNotificationAppRev = "true"
|
||||||
>
|
>
|
||||||
|
@ -229,7 +231,7 @@
|
||||||
- directory structure has been devised that exists within the content
|
- directory structure has been devised that exists within the content
|
||||||
- directory ($_contentDir). This requires a base directory from which
|
- directory ($_contentDir). This requires a base directory from which
|
||||||
- to begin. Usually leave this to the default setting, 1048576, but can
|
- to begin. Usually leave this to the default setting, 1048576, but can
|
||||||
- be any number or string that does not already exist within $_contentDir.
|
- be any number or string that does not already exist within $_contentDir.
|
||||||
- maxDirID: Maximum number of sub-directories per parent directory. Default: 0, use 31998 (maximum number of dirs in ext3) for a multi level content directory.
|
- maxDirID: Maximum number of sub-directories per parent directory. Default: 0, use 31998 (maximum number of dirs in ext3) for a multi level content directory.
|
||||||
- updateNotifyTime: users are notified about document-changes that took place within the last "updateNotifyTime" seconds
|
- updateNotifyTime: users are notified about document-changes that took place within the last "updateNotifyTime" seconds
|
||||||
- extraPath: Path to addtional software. This is the directory containing additional software like the adodb directory, or the pear Log package. This path will be added to the php include path
|
- extraPath: Path to addtional software. This is the directory containing additional software like the adodb directory, or the pear Log package. This path will be added to the php include path
|
||||||
|
@ -240,13 +242,14 @@
|
||||||
contentOffsetDir = "1048576"
|
contentOffsetDir = "1048576"
|
||||||
maxDirID = "0"
|
maxDirID = "0"
|
||||||
updateNotifyTime = "86400"
|
updateNotifyTime = "86400"
|
||||||
extraPath = ""
|
extraPath = ""
|
||||||
|
cmdTimeout = "5"
|
||||||
>
|
>
|
||||||
</server>
|
</server>
|
||||||
<converters>
|
<converters>
|
||||||
<converter mimeType="application/pdf">
|
<converter mimeType="application/pdf">
|
||||||
pdftotext -enc UTF-8 -nopgbrk %s - | sed -e 's/ [a-zA-Z0-9.]\{1\} / /g' -e 's/[0-9.]//g'
|
pdftotext -enc UTF-8 -nopgbrk %s - | sed -e 's/ [a-zA-Z0-9.]\{1\} / /g' -e 's/[0-9.]//g'
|
||||||
</converter>
|
</converter>
|
||||||
<converter mimeType="application/msword">
|
<converter mimeType="application/msword">
|
||||||
catdoc %s
|
catdoc %s
|
||||||
</converter>
|
</converter>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user