Initial commit
This commit is contained in:
43
application/Espo/Resources/defaults/class-aliases.php
Normal file
43
application/Espo/Resources/defaults/class-aliases.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 EspoCRM, Inc.
|
||||
* Website: https://www.espocrm.com
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||||
************************************************************************/
|
||||
|
||||
// Aliases for backward compatibility or patches.
|
||||
$map = [
|
||||
'Espo\\Core\\Hooks\\Base' => 'Espo\\Core\\Hook\\Deprecations\\BaseHook',
|
||||
'Doctrine\\DBAL\\Platforms\\Keywords\\MariaDb102Keywords' => 'Espo\\Core\\Utils\\Database\\Dbal\\Platforms\\Keywords\\MariaDb102Keywords',
|
||||
];
|
||||
|
||||
/** @phpstan-ignore-next-line */
|
||||
foreach ($map as $alias => $className) {
|
||||
if (!class_exists($className)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
class_alias($className, $alias);
|
||||
}
|
||||
327
application/Espo/Resources/defaults/config.php
Normal file
327
application/Espo/Resources/defaults/config.php
Normal file
@@ -0,0 +1,327 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 EspoCRM, Inc.
|
||||
* Website: https://www.espocrm.com
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||||
************************************************************************/
|
||||
|
||||
return [
|
||||
'database' => [
|
||||
'host' => 'localhost',
|
||||
'port' => null,
|
||||
'charset' => null,
|
||||
'dbname' => '',
|
||||
'user' => '',
|
||||
'password' => '',
|
||||
],
|
||||
'useCache' => true,
|
||||
/** Max number of jobs per one execution. */
|
||||
'jobMaxPortion' => 15,
|
||||
/** Jobs will be executed in parallel processes. */
|
||||
'jobRunInParallel' => false,
|
||||
/** Max number of processes run simultaneously. */
|
||||
'jobPoolConcurrencyNumber' => 8,
|
||||
/** Max number of CRON processes run simultaneously. */
|
||||
'daemonMaxProcessNumber' => 5,
|
||||
/** Interval between process runs in seconds. */
|
||||
'daemonInterval' => 10,
|
||||
'daemonProcessTimeout' => 36000,
|
||||
'jobForceUtc' => false,
|
||||
'recordsPerPage' => 20,
|
||||
'recordsPerPageSmall' => 5,
|
||||
'recordsPerPageSelect' => 10,
|
||||
'recordsPerPageKanban' => 5,
|
||||
'applicationName' => 'EspoCRM',
|
||||
'version' => '9.2.0',
|
||||
'timeZone' => 'UTC',
|
||||
'dateFormat' => 'DD.MM.YYYY',
|
||||
'timeFormat' => 'HH:mm',
|
||||
'weekStart' => 0,
|
||||
'thousandSeparator' => ',',
|
||||
'decimalMark' => '.',
|
||||
'exportDelimiter' => ',',
|
||||
'currencyList' => ['USD'],
|
||||
'defaultCurrency' => 'USD',
|
||||
'baseCurrency' => 'USD',
|
||||
'currencyRates' => [],
|
||||
'currencyNoJoinMode' => false,
|
||||
'outboundEmailIsShared' => false,
|
||||
'outboundEmailFromName' => 'EspoCRM',
|
||||
'outboundEmailFromAddress' => null,
|
||||
'smtpServer' => null,
|
||||
'smtpPort' => 587,
|
||||
'smtpAuth' => true,
|
||||
'smtpSecurity' => 'TLS',
|
||||
'smtpUsername' => null,
|
||||
'smtpPassword' => null,
|
||||
'language' => 'en_US',
|
||||
'logger' => [
|
||||
'path' => 'data/logs/espo.log',
|
||||
'level' => 'WARNING', /** DEBUG, INFO, NOTICE, WARNING, ERROR, CRITICAL, ALERT, EMERGENCY */
|
||||
'rotation' => true,
|
||||
'maxFileNumber' => 30,
|
||||
'printTrace' => false,
|
||||
'databaseHandler' => false,
|
||||
'sql' => false,
|
||||
'sqlFailed' => false,
|
||||
],
|
||||
'authenticationMethod' => 'Espo',
|
||||
'tabQuickSearch' => true,
|
||||
'globalSearchEntityList' => [
|
||||
'Account',
|
||||
'Contact',
|
||||
'Lead',
|
||||
'Opportunity',
|
||||
],
|
||||
'tabList' => [
|
||||
(object) [
|
||||
'type' => 'divider',
|
||||
'id' => '342567',
|
||||
'text' => '$CRM'
|
||||
],
|
||||
'Account',
|
||||
'Contact',
|
||||
'Lead',
|
||||
'Opportunity',
|
||||
(object) [
|
||||
'type' => 'divider',
|
||||
'text' => '$Activities',
|
||||
'id' => '219419'
|
||||
],
|
||||
'Email',
|
||||
'Meeting',
|
||||
'Call',
|
||||
'Task',
|
||||
'Calendar',
|
||||
(object) [
|
||||
'type' => 'divider',
|
||||
'id' => '655187',
|
||||
'text' => '$Support'
|
||||
],
|
||||
'Case',
|
||||
'KnowledgeBaseArticle',
|
||||
(object) [
|
||||
'type' => 'divider',
|
||||
'text' => NULL,
|
||||
'id' => '137994'
|
||||
],
|
||||
'_delimiter_',
|
||||
(object) [
|
||||
'type' => 'divider',
|
||||
'text' => '$Marketing',
|
||||
'id' => '463280'
|
||||
],
|
||||
'Campaign',
|
||||
'TargetList',
|
||||
(object) [
|
||||
'type' => 'divider',
|
||||
'text' => '$Business',
|
||||
'id' => '518202'
|
||||
],
|
||||
'Document',
|
||||
(object) [
|
||||
'type' => 'divider',
|
||||
'text' => '$Organization',
|
||||
'id' => '566592'
|
||||
],
|
||||
'User',
|
||||
'Team',
|
||||
'WorkingTimeCalendar',
|
||||
(object) [
|
||||
'type' => 'divider',
|
||||
'text' => NULL,
|
||||
'id' => '898671'
|
||||
],
|
||||
'EmailTemplate',
|
||||
'Template',
|
||||
'Import',
|
||||
],
|
||||
'quickCreateList' => [
|
||||
"Account",
|
||||
"Contact",
|
||||
"Lead",
|
||||
"Opportunity",
|
||||
"Meeting",
|
||||
"Call",
|
||||
"Task",
|
||||
"Case",
|
||||
"Email"
|
||||
],
|
||||
'exportDisabled' => false,
|
||||
'adminNotifications' => true,
|
||||
'adminNotificationsNewVersion' => true,
|
||||
'adminNotificationsCronIsNotConfigured' => true,
|
||||
'adminNotificationsNewExtensionVersion' => true,
|
||||
'assignmentEmailNotifications' => false,
|
||||
'assignmentEmailNotificationsEntityList' => ['Lead', 'Opportunity', 'Task', 'Case'],
|
||||
'assignmentNotificationsEntityList' => ['Meeting', 'Call', 'Email'],
|
||||
"portalStreamEmailNotifications" => true,
|
||||
'streamEmailNotificationsEntityList' => ['Case'],
|
||||
'streamEmailNotificationsTypeList' => ['Post', 'Status', 'EmailReceived'],
|
||||
'emailNotificationsDelay' => 30,
|
||||
'emailMessageMaxSize' => 10,
|
||||
'emailRecipientAddressMaxCount' => 100,
|
||||
'notificationsCheckInterval' => 10,
|
||||
'notificationGrouping' => true,
|
||||
'popupNotificationsCheckInterval' => 15,
|
||||
'maxEmailAccountCount' => 2,
|
||||
'followCreatedEntities' => false,
|
||||
'b2cMode' => false,
|
||||
'restrictedMode' => false,
|
||||
'theme' => 'Espo',
|
||||
'themeParams' => (object) ['navbar' => 'side'],
|
||||
'massEmailMaxPerHourCount' => 100,
|
||||
'massEmailMaxPerBatchCount' => null,
|
||||
'massEmailVerp' => false,
|
||||
'personalEmailMaxPortionSize' => 50,
|
||||
'inboundEmailMaxPortionSize' => 50,
|
||||
'emailAddressLookupEntityTypeList' => ['User'],
|
||||
'emailAddressSelectEntityTypeList' => ['User', 'Contact', 'Lead', 'Account'],
|
||||
'emailAddressEntityLookupDefaultOrder' => ['User', 'Contact', 'Lead', 'Account'],
|
||||
'phoneNumberEntityLookupDefaultOrder' => ['User', 'Contact', 'Lead', 'Account'],
|
||||
'authTokenLifetime' => 0,
|
||||
'authTokenMaxIdleTime' => 48,
|
||||
'userNameRegularExpression' => '[^a-z0-9\-@_\.\s]',
|
||||
'addressFormat' => 1,
|
||||
'displayListViewRecordCount' => true,
|
||||
'dashboardLayout' => [
|
||||
(object) [
|
||||
'name' => 'My Espo',
|
||||
'layout' => [
|
||||
(object) [
|
||||
'id' => 'default-activities',
|
||||
'name' => 'Activities',
|
||||
'x' => 2,
|
||||
'y' => 2,
|
||||
'width' => 2,
|
||||
'height' => 4
|
||||
],
|
||||
(object) [
|
||||
'id' => 'default-stream',
|
||||
'name' => 'Stream',
|
||||
'x' => 0,
|
||||
'y' => 0,
|
||||
'width' => 2,
|
||||
'height' => 4
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
'calendarEntityList' => ['Meeting', 'Call', 'Task'],
|
||||
'activitiesEntityList' => ['Meeting', 'Call'],
|
||||
'historyEntityList' => ['Meeting', 'Call', 'Email'],
|
||||
'busyRangesEntityList' => ['Meeting', 'Call'],
|
||||
'emailAutoReplySuppressPeriod' => '2 hours',
|
||||
'emailAutoReplyLimit' => 5,
|
||||
'cleanupJobPeriod' => '1 month',
|
||||
'cleanupActionHistoryPeriod' => '15 days',
|
||||
'cleanupAuthTokenPeriod' => '1 month',
|
||||
'cleanupSubscribers' => true,
|
||||
'cleanupAudit' => true,
|
||||
'cleanupAuditPeriod' => '3 months',
|
||||
'cleanupAppLog' => true,
|
||||
'cleanupAppLogPeriod' => '30 days',
|
||||
'appLogAdminAllowed' => false,
|
||||
'currencyFormat' => 2,
|
||||
'currencyDecimalPlaces' => 2,
|
||||
'aclAllowDeleteCreated' => false,
|
||||
'aclAllowDeleteCreatedThresholdPeriod' => '24 hours',
|
||||
'attachmentAvailableStorageList' => null,
|
||||
'attachmentUploadMaxSize' => 256,
|
||||
'attachmentUploadChunkSize' => 4,
|
||||
'inlineAttachmentUploadMaxSize' => 20,
|
||||
'textFilterUseContainsForVarchar' => false,
|
||||
'tabColorsDisabled' => false,
|
||||
'massPrintPdfMaxCount' => 50,
|
||||
'emailKeepParentTeamsEntityList' => ['Case'],
|
||||
'streamEmailWithContentEntityTypeList' => ['Case'],
|
||||
'recordListMaxSizeLimit' => 200,
|
||||
'noteDeleteThresholdPeriod' => '1 month',
|
||||
'noteEditThresholdPeriod' => '7 days',
|
||||
'notePinnedMaxCount' => 5,
|
||||
'emailForceUseExternalClient' => false,
|
||||
'useWebSocket' => false,
|
||||
'webSocketMessager' => 'ZeroMQ',
|
||||
'auth2FAMethodList' => ['Totp'],
|
||||
'auth2FAInPortal' => false,
|
||||
'personNameFormat' => 'firstLast',
|
||||
'newNotificationCountInTitle' => false,
|
||||
'pdfEngine' => 'Dompdf',
|
||||
'smsProvider' => null,
|
||||
'mapProvider' => 'Google',
|
||||
'defaultFileStorage' => 'EspoUploadDir',
|
||||
'ldapUserNameAttribute' => 'sAMAccountName',
|
||||
'ldapUserFirstNameAttribute' => 'givenName',
|
||||
'ldapUserLastNameAttribute' => 'sn',
|
||||
'ldapUserTitleAttribute' => 'title',
|
||||
'ldapUserEmailAddressAttribute' => 'mail',
|
||||
'ldapUserPhoneNumberAttribute' => 'telephoneNumber',
|
||||
'ldapUserObjectClass' => 'person',
|
||||
'ldapPortalUserLdapAuth' => false,
|
||||
'passwordGenerateLength' => 10,
|
||||
'passwordStrengthLength' => null,
|
||||
'passwordStrengthLetterCount' => null,
|
||||
'passwordStrengthNumberCount' => null,
|
||||
'passwordStrengthBothCases' => false,
|
||||
'passwordStrengthSpecialCharacterCount' => null,
|
||||
'massActionIdleCountThreshold' => 100,
|
||||
'exportIdleCountThreshold' => 1000,
|
||||
'clientSecurityHeadersDisabled' => false,
|
||||
'clientCspDisabled' => false,
|
||||
'clientCspScriptSourceList' => [
|
||||
'https://maps.googleapis.com',
|
||||
],
|
||||
'oidcJwtSignatureAlgorithmList' => ['RS256'],
|
||||
'oidcUsernameClaim' => 'sub',
|
||||
'oidcFallback' => true,
|
||||
'oidcScopes' => ['profile', 'email', 'phone'],
|
||||
'oidcAuthorizationPrompt' => 'consent',
|
||||
'listViewSettingsDisabled' => false,
|
||||
'cleanupDeletedRecords' => true,
|
||||
'phoneNumberNumericSearch' => true,
|
||||
'phoneNumberInternational' => true,
|
||||
'phoneNumberExtensions' => false,
|
||||
'phoneNumberPreferredCountryList' => ['us', 'de'],
|
||||
'adminUpgradeDisabled' => false,
|
||||
'wysiwygCodeEditorDisabled' => false,
|
||||
'customPrefixDisabled' => false,
|
||||
'listPagination' => true,
|
||||
'starsLimit' => 500,
|
||||
'quickSearchFullTextAppendWildcard' => false,
|
||||
'authIpAddressCheck' => false,
|
||||
'authIpAddressWhitelist' => [],
|
||||
'authIpAddressCheckExcludedUsersIds' => [],
|
||||
'authIpAddressCheckExcludedUsersNames' => (object) [],
|
||||
'availableReactions' => ['Like'],
|
||||
'streamReactionsCheckMaxSize' => 50,
|
||||
'emailScheduledBatchCount' => 50,
|
||||
'emailAddressMaxCount' => 10,
|
||||
'phoneNumberMaxCount' => 10,
|
||||
'iframeSandboxExcludeDomainList' => [
|
||||
'youtube.com',
|
||||
'google.com',
|
||||
],
|
||||
'isInstalled' => false,
|
||||
];
|
||||
@@ -0,0 +1 @@
|
||||
false
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"stream": {
|
||||
"order": 1,
|
||||
"sticked": false,
|
||||
"hidden": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
false
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
6
application/Espo/Resources/defaults/layouts/detail.json
Normal file
6
application/Espo/Resources/defaults/layouts/detail.json
Normal file
@@ -0,0 +1,6 @@
|
||||
[{
|
||||
"label":"Overview",
|
||||
"rows": [
|
||||
[{"name":"name"}, false]
|
||||
]
|
||||
}]
|
||||
@@ -0,0 +1,6 @@
|
||||
[{
|
||||
"label":"",
|
||||
"rows": [
|
||||
[{"name":"name", "fullWidth": true}]
|
||||
]
|
||||
}]
|
||||
1
application/Espo/Resources/defaults/layouts/filters.json
Normal file
1
application/Espo/Resources/defaults/layouts/filters.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
||||
3
application/Espo/Resources/defaults/layouts/kanban.json
Normal file
3
application/Espo/Resources/defaults/layouts/kanban.json
Normal file
@@ -0,0 +1,3 @@
|
||||
[
|
||||
{"name":"name", "link": true}
|
||||
]
|
||||
3
application/Espo/Resources/defaults/layouts/list.json
Normal file
3
application/Espo/Resources/defaults/layouts/list.json
Normal file
@@ -0,0 +1,3 @@
|
||||
[
|
||||
{"name":"name", "link":true}
|
||||
]
|
||||
@@ -0,0 +1,3 @@
|
||||
[
|
||||
{"name":"name"}
|
||||
]
|
||||
@@ -0,0 +1,3 @@
|
||||
[
|
||||
{"name":"name","link":true}
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
["assignedUser", "teams"]
|
||||
@@ -0,0 +1 @@
|
||||
[]
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
|
||||
}
|
||||
302
application/Espo/Resources/defaults/systemConfig.php
Normal file
302
application/Espo/Resources/defaults/systemConfig.php
Normal file
@@ -0,0 +1,302 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 EspoCRM, Inc.
|
||||
* Website: https://www.espocrm.com
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||||
************************************************************************/
|
||||
|
||||
return [
|
||||
'defaultPermissions' => [
|
||||
'dir' => '0755',
|
||||
'file' => '0644',
|
||||
'user' => '',
|
||||
'group' => '',
|
||||
],
|
||||
'crud' => [
|
||||
'get' => 'read',
|
||||
'post' => 'create',
|
||||
'put' => 'update',
|
||||
'patch' => 'patch',
|
||||
'delete' => 'delete',
|
||||
],
|
||||
'systemUserAttributes' => [
|
||||
'lastName' => 'System',
|
||||
],
|
||||
'systemItems' => [
|
||||
'systemItems',
|
||||
'adminItems',
|
||||
'superAdminItems',
|
||||
'configPath',
|
||||
'cachePath',
|
||||
'database',
|
||||
'crud',
|
||||
'logger',
|
||||
'isInstalled',
|
||||
'systemUser',
|
||||
'defaultPermissions',
|
||||
'passwordSalt',
|
||||
'cryptKey',
|
||||
'apiSecretKeys',
|
||||
'hashSecretKey',
|
||||
'restrictedMode',
|
||||
'instanceId',
|
||||
'adminUpgradeDisabled',
|
||||
'userLimit',
|
||||
'portalUserLimit',
|
||||
'stylesheet',
|
||||
'userItems',
|
||||
'globalItems',
|
||||
'internalSmtpServer',
|
||||
'internalSmtpPort',
|
||||
'internalSmtpAuth',
|
||||
'internalSmtpUsername',
|
||||
'internalSmtpPassword',
|
||||
'internalSmtpSecurity',
|
||||
'internalOutboundEmailFromAddress',
|
||||
'requiredPhpVersion',
|
||||
'requiredMysqlVersion',
|
||||
'requiredPostgresqlVersion',
|
||||
'recommendedMysqlParams',
|
||||
'requiredPhpLibs',
|
||||
'recommendedPhpLibs',
|
||||
'recommendedPhpParams',
|
||||
'requiredMariadbVersion',
|
||||
'recommendedMariadbParams',
|
||||
'phpExecutablePath',
|
||||
'webSocketDebugMode',
|
||||
'webSocketSslCertificateFile',
|
||||
'webSocketSslCertificateLocalPrivateKey',
|
||||
'webSocketSslCertificatePassphrase',
|
||||
'webSocketSslAllowSelfSigned',
|
||||
'webSocketUseSecureServer',
|
||||
'webSocketPort',
|
||||
'webSocketZeroMQSubscriberDsn',
|
||||
'webSocketZeroMQSubmissionDsn',
|
||||
'webSocketMessager',
|
||||
'actualDatabaseType',
|
||||
'actualDatabaseVersion',
|
||||
'clientSecurityHeadersDisabled',
|
||||
'clientCspDisabled',
|
||||
'clientCspScriptSourceList',
|
||||
'authTokenSecretDisabled',
|
||||
'authLogDisabled',
|
||||
'authApiUserLogDisabled',
|
||||
'authFailedAttemptsPeriod',
|
||||
'authFailedCodeAttemptsPeriod',
|
||||
'authMaxFailedAttemptNumber',
|
||||
'ipAddressServerParam',
|
||||
'jobNoTableLocking',
|
||||
'passwordRecoveryRequestLifetime',
|
||||
'passwordChangeRequestNewUserLifetime',
|
||||
'passwordChangeRequestExistingUserLifetime',
|
||||
'passwordRecoveryInternalIntervalPeriod',
|
||||
'cleanupAppLog',
|
||||
'cleanupAppLogPeriod',
|
||||
],
|
||||
'adminItems' => [
|
||||
'devMode',
|
||||
'smtpServer',
|
||||
'smtpPort',
|
||||
'smtpAuth',
|
||||
'smtpSecurity',
|
||||
'smtpUsername',
|
||||
'smtpPassword',
|
||||
'jobMaxPortion',
|
||||
'jobPeriod',
|
||||
'jobRerunAttemptNumber',
|
||||
'jobRunInParallel',
|
||||
'jobPoolConcurrencyNumber',
|
||||
'jobPeriodForActiveProcess',
|
||||
'jobForceUtc',
|
||||
'cronMinInterval',
|
||||
'daemonInterval',
|
||||
'daemonProcessTimeout',
|
||||
'daemonMaxProcessNumber',
|
||||
'authenticationMethod',
|
||||
'adminPanelIframeHeight',
|
||||
'adminPanelIframeUrl',
|
||||
'adminPanelIframeDisabled',
|
||||
'ldapHost',
|
||||
'ldapPort',
|
||||
'ldapSecurity',
|
||||
'ldapAuth',
|
||||
'ldapUsername',
|
||||
'ldapPassword',
|
||||
'ldapBindRequiresDn',
|
||||
'ldapBaseDn',
|
||||
'ldapUserLoginFilter',
|
||||
'ldapAccountCanonicalForm',
|
||||
'ldapAccountDomainName',
|
||||
'ldapAccountDomainNameShort',
|
||||
'ldapAccountFilterFormat',
|
||||
'ldapTryUsernameSplit',
|
||||
'ldapOptReferrals',
|
||||
'ldapPortalUserLdapAuth',
|
||||
'ldapCreateEspoUser',
|
||||
'ldapAccountDomainName',
|
||||
'ldapAccountDomainNameShort',
|
||||
'ldapUserNameAttribute',
|
||||
'ldapUserFirstNameAttribute',
|
||||
'ldapUserLastNameAttribute',
|
||||
'ldapUserTitleAttribute',
|
||||
'ldapUserEmailAddressAttribute',
|
||||
'ldapUserPhoneNumberAttribute',
|
||||
'ldapUserObjectClass',
|
||||
'maxEmailAccountCount',
|
||||
'massEmailMaxPerHourCount',
|
||||
'massEmailMaxPerBatchCount',
|
||||
'massEmailSiteUrl',
|
||||
'personalEmailMaxPortionSize',
|
||||
'inboundEmailMaxPortionSize',
|
||||
'authTokenLifetime',
|
||||
'authTokenMaxIdleTime',
|
||||
'ldapUserDefaultTeamId',
|
||||
'ldapUserDefaultTeamName',
|
||||
'ldapUserTeamsIds',
|
||||
'ldapUserTeamsNames',
|
||||
'ldapPortalUserPortalsIds',
|
||||
'ldapPortalUserPortalsNames',
|
||||
'ldapPortalUserRolesIds',
|
||||
'ldapPortalUserRolesNames',
|
||||
'cleanupJobPeriod',
|
||||
'emailAutoReplySuppressPeriod',
|
||||
'emailAutoReplyLimit',
|
||||
'cleanupActionHistoryPeriod',
|
||||
'adminNotifications',
|
||||
'adminNotificationsNewVersion',
|
||||
'adminNotificationsCronIsNotConfigured',
|
||||
'adminNotificationsNewExtensionVersion',
|
||||
'leadCaptureAllowOrigin',
|
||||
'leadCaptureSiteUrl',
|
||||
'cronDisabled',
|
||||
'defaultPortalId',
|
||||
'cleanupDeletedRecords',
|
||||
'cleanupSubscribers',
|
||||
'cleanupSubscribersPeriod',
|
||||
'cleanupAudit',
|
||||
'cleanupAuditPeriod',
|
||||
'authTokenPreventConcurrent',
|
||||
'emailParser',
|
||||
'passwordRecoveryDisabled',
|
||||
'passwordRecoveryNoExposure',
|
||||
'passwordRecoveryForAdminDisabled',
|
||||
'passwordRecoveryForInternalUsersDisabled',
|
||||
'passwordRecoveryRequestDelay',
|
||||
'thumbImageCacheDisabled',
|
||||
'emailReminderPortionSize',
|
||||
'outboundSmsFromNumber',
|
||||
'currencyNoJoinMode',
|
||||
'authAnotherUserDisabled',
|
||||
'emailAddressEntityLookupDefaultOrder',
|
||||
'phoneNumberEntityLookupDefaultOrder',
|
||||
'customPrefixDisabled',
|
||||
'noteAclLimit',
|
||||
'noteAclPeriod',
|
||||
'latestVersion',
|
||||
],
|
||||
'superAdminItems' => [
|
||||
'jobMaxPortion',
|
||||
'jobPeriod',
|
||||
'jobRerunAttemptNumber',
|
||||
'jobRunInParallel',
|
||||
'jobPoolConcurrencyNumber',
|
||||
'jobPeriodForActiveProcess',
|
||||
'appLogAdminAllowed',
|
||||
'cronMinInterval',
|
||||
'daemonInterval',
|
||||
'daemonProcessTimeout',
|
||||
'daemonMaxProcessNumber',
|
||||
'adminPanelIframeUrl',
|
||||
'adminPanelIframeDisabled',
|
||||
'adminPanelIframeHeight',
|
||||
'cronDisabled',
|
||||
'maintenanceMode',
|
||||
'siteUrl',
|
||||
'useWebSocket',
|
||||
'webSocketUrl',
|
||||
],
|
||||
'userItems' => [],
|
||||
'globalItems' => [
|
||||
'cacheTimestamp',
|
||||
'appTimestamp',
|
||||
'language',
|
||||
'isDeveloperMode',
|
||||
'theme',
|
||||
'dateFormat',
|
||||
'timeFormat',
|
||||
'timeZone',
|
||||
'decimalMark',
|
||||
'weekStart',
|
||||
'thousandSeparator',
|
||||
'companyLogoId',
|
||||
'applicationName',
|
||||
'jsLibs',
|
||||
'maintenanceMode',
|
||||
'siteUrl',
|
||||
'useCache',
|
||||
'useCacheInDeveloperMode',
|
||||
'isDeveloperMode',
|
||||
'useWebSocket',
|
||||
'webSocketUrl',
|
||||
'aclAllowDeleteCreated',
|
||||
],
|
||||
'isInstalled' => false,
|
||||
'requiredPhpVersion' => '8.2.0',
|
||||
'requiredPhpLibs' => [
|
||||
'json',
|
||||
'openssl',
|
||||
'mbstring',
|
||||
'zip',
|
||||
'gd',
|
||||
'iconv'
|
||||
],
|
||||
'recommendedPhpLibs' => [
|
||||
'curl',
|
||||
'xml',
|
||||
'xmlwriter',
|
||||
'exif',
|
||||
],
|
||||
'recommendedPhpParams' => [
|
||||
'max_execution_time' => 180,
|
||||
'max_input_time' => 180,
|
||||
'memory_limit' => '256M',
|
||||
'post_max_size' => '20M',
|
||||
'upload_max_filesize' => '20M',
|
||||
],
|
||||
'requiredMysqlVersion' => '8.0.0',
|
||||
'recommendedMysqlParams' => [],
|
||||
'requiredMariadbVersion' => '10.3.0',
|
||||
'requiredPostgresqlVersion' => '15.0',
|
||||
'recommendedMariadbParams' => [],
|
||||
/** Max execution time (in seconds) allocated for a single job. If exceeded then set to Failed.*/
|
||||
'jobPeriod' => 7800,
|
||||
/** Max execution time (in seconds) allocated for a single job with active process.
|
||||
* If exceeded then set to Failed. */
|
||||
'jobPeriodForActiveProcess' => 36000,
|
||||
/** Number of attempts to re-run failed jobs. */
|
||||
'jobRerunAttemptNumber' => 1,
|
||||
/** Min interval (in seconds) between two CRON runs. */
|
||||
'cronMinInterval' => 2,
|
||||
];
|
||||
Reference in New Issue
Block a user