mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 10:09:20 +03:00
21 lines
544 B
PHP
21 lines
544 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 GRAVATAR = 'GRAVATAR';
|
|
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 TEMPLATES = 'TEMPLATES';
|
|
const AUTOLOGOUT = 'AUTOLOGOUT';
|
|
}
|