snappymail/rainloop/v/0.0.0/app/libraries/MailSo/Config.php
RainLoop Team 290cf38b97 Code refactoring
Threads sorting
Big mailbox optimazations
Added "labs.imap_message_list_date_filter"
Added "labs.imap_message_list_count_limit_trigger"
Added "labs.imap_message_list_hide_deleted_messages"
2014-08-13 20:13:50 +04:00

45 lines
614 B
PHP

<?php
namespace MailSo;
/**
* @category MailSo
* @package Base
*/
class Config
{
/**
* @var bool
*/
public static $ICONV = true;
/**
* @var bool
*/
public static $MBSTRING = true;
/**
* @var bool
*/
public static $FixIconvByMbstring = true;
/**
* @var int
*/
public static $MessageListCountLimitTrigger = 0;
/**
* @var bool
*/
public static $MessageListUndeletedFilter = false;
/**
* @var int
*/
public static $MessageListDateFilter = 0;
/**
* @var \MailSo\Log\Logger|null
*/
public static $SystemLogger = null;
}