| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\Enums;
- /**
- *
- * Created by PhpStorm.
- * User: ThurData
- * Date: 09.09.19
- * Time: 14:10
- * Class Kerio
- */
- class Kerio
- {
- /**
- * attribute statuses
- */
- const ATTR_ENABLED = 'TRUE';
- const ATTR_DISABLED = 'FALSE';
- const ENABLED = 'enabled';
- const DISABLED = 'disabled';
- const ENABLED_AS_INT = 1;
- /**
- * connection ports
- */
- const SECURE_PORT = 7071;
- const PORT = 7072;
- /**
- *
- */
- const CLIENT_PORT = 8443;
- /**
- * Kerio statuses
- */
- const STATUS_ACCEPT = 'ACCEPT';
- const STATUS_APPROVAL = 'APPROVAL';
- const STATUS_REJECT = 'REJECT';
- const ACC_STATUS_ACTIVE = 'active';
- const ACC_STATUS_LOCKED = 'locked';
- const ACC_STATUS_MAINTENANCE = 'maintenance';
- const ACC_STATUS_CLOSED = 'closed';
- const ACC_STATUS_LOCKOUT = 'lockout';
- const ACC_STATUS_PENDING = 'pending';
- const ACC_STATUS_SUSPEND = 'suspended';
- const RES_TYPE_LOCATION = 'Location';
- const RES_TYPE_EQUIPMENT = 'Equipment';
- const DEFAULT_LOGIN_LINK = 'https://kerio-server';
- const BASE_ACCOUNT_CONFIG = [
- 'kerioFeatureMailEnabled',
- 'kerioFeatureCalendarEnabled',
- 'kerioFeatureBriefcasesEnabled',
- 'kerioFeatureContactsEnabled',
- 'kerioFeatureTasksEnabled',
- 'kerioFeatureOptionsEnabled',
- 'kerioFeatureTaggingEnabled',
- 'kerioFeatureChangePasswordEnabled',
- 'kerioFeatureManageZimlets',
- 'kerioFeatureGalEnabled',
- 'kerioFeatureWebClientOfflineAccessEnabled',
- 'kerioFeatureImportFolderEnabled',
- 'kerioDumpsterEnabled',
- 'kerioFeatureSharingEnabled',
- 'kerioFeatureSkinChangeEnabled',
- 'kerioFeatureHtmlComposeEnabled',
- 'kerioFeatureMAPIConnectorEnabled',
- 'kerioFeatureTouchClientEnabled',
- 'kerioFeatureGalAutoCompleteEnabled',
- 'kerioFeatureExportFolderEnabled',
- 'kerioDumpsterPurgeEnabled',
- 'kerioFeatureMailPriorityEnabled',
- 'kerioImapEnabled',
- 'kerioFeatureImapDataSourceEnabled',
- 'kerioFeatureMailSendLaterEnabled',
- 'kerioFeatureFiltersEnabled',
- 'kerioFeatureNewMailNotificationEnabled',
- 'kerioFeatureReadReceiptsEnabled',
- 'kerioFeatureFlaggingEnabled',
- 'kerioPop3Enabled',
- 'kerioFeaturePop3DataSourceEnabled',
- 'kerioFeatureConversationsEnabled',
- 'kerioFeatureOutOfOfficeReplyEnabled',
- 'kerioFeatureIdentitiesEnabled',
- 'kerioFeatureDistributionListFolderEnabled',
- 'kerioFeatureGroupCalendarEnabled',
- 'kerioFeatureCalendarReminderDeviceEmailEnabled',
- 'kerioFeatureAdvancedSearchEnabled',
- 'kerioFeatureInitialSearchPreferenceEnabled',
- 'kerioFeatureSavedSearchesEnabled',
- 'kerioFeaturePeopleSearchEnabled',
- 'kerioFeatureSMIMEEnabled',
- 'kerioFeatureEwsEnabled'
- ];
- }
|