snappymail/rainloop/v/0.0.0/app/libraries/MailSo/Config.php

46 lines
614 B
PHP
Raw Normal View History

2014-07-30 19:57:38 +08:00
<?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
2014-07-30 19:57:38 +08:00
*/
public static $SystemLogger = null;
}