| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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 = 4040;
- const PORT = 4040;
- /**
- *
- */
- const CLIENT_PORT = 443;
- /**
- * 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 = [
- // fill with attributes like imapEnabled etc.
- ];
- }
|