mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 05:59:21 +03:00
20 lines
537 B
PHP
20 lines
537 B
PHP
<?php
|
|
|
|
namespace RainLoop\Enumerations;
|
|
|
|
class Capa
|
|
{
|
|
const GNUPG = 'GnuPG';
|
|
const OPEN_PGP = 'OpenPGP';
|
|
const THEMES = 'Themes';
|
|
const USER_BACKGROUND = 'UserBackground';
|
|
const SIEVE = 'Sieve';
|
|
const ATTACHMENT_THUMBNAILS = 'AttachmentThumbnails';
|
|
const ADDITIONAL_ACCOUNTS = 'AdditionalAccounts';
|
|
const IDENTITIES = 'Identities';
|
|
const CONTACTS = 'Contacts';
|
|
const QUOTA = 'Quota';
|
|
const MESSAGE_ACTIONS = 'MessageActions';
|
|
const ATTACHMENTS_ACTIONS = 'AttachmentsActions';
|
|
const DANGEROUS_ACTIONS = 'DangerousActions';
|
|
}
|