mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
2cada68f41
Also removed: POP3, OAuth2 and update feature Added: admin password_hash/password_verify Requires: PHP 7.3+ Replaced: CRLF with LF Replaced: pclZip with ZipArchive
34 lines
994 B
PHP
34 lines
994 B
PHP
<?php
|
|
|
|
namespace RainLoop\Enumerations;
|
|
|
|
class Capa
|
|
{
|
|
const PREM = 'PREM';
|
|
const TWO_FACTOR = 'TWO_FACTOR';
|
|
const TWO_FACTOR_FORCE = 'TWO_FACTOR_FORCE';
|
|
const OPEN_PGP = 'OPEN_PGP';
|
|
const PREFETCH = 'PREFETCH';
|
|
const THEMES = 'THEMES';
|
|
const USER_BACKGROUND = 'USER_BACKGROUND';
|
|
const SIEVE = 'SIEVE';
|
|
const FILTERS = 'FILTERS';
|
|
const ATTACHMENT_THUMBNAILS = 'ATTACHMENT_THUMBNAILS';
|
|
const ADDITIONAL_ACCOUNTS = 'ADDITIONAL_ACCOUNTS';
|
|
const IDENTITIES = 'IDENTITIES';
|
|
const FOLDERS = 'FOLDERS';
|
|
const COMPOSER = 'COMPOSER';
|
|
const CONTACTS = 'CONTACTS';
|
|
const RELOAD = 'RELOAD';
|
|
const SEARCH = 'SEARCH';
|
|
const SEARCH_ADV = 'SEARCH_ADV';
|
|
const SETTINGS = 'SETTINGS';
|
|
const QUOTA = 'QUOTA';
|
|
const HELP = 'HELP';
|
|
const TEMPLATES = 'TEMPLATES';
|
|
const MESSAGE_ACTIONS = 'MESSAGE_ACTIONS';
|
|
const MESSAGELIST_ACTIONS = 'MESSAGELIST_ACTIONS';
|
|
const ATTACHMENTS_ACTIONS = 'ATTACHMENTS_ACTIONS';
|
|
const DANGEROUS_ACTIONS = 'DANGEROUS_ACTIONS';
|
|
const AUTOLOGOUT = 'AUTOLOGOUT';
|
|
}
|