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;
|
|
|
|
|
2014-08-28 19:26:26 +08:00
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public static $MessageListFastSimpleSearch = true;
|
|
|
|
|
2014-07-30 19:57:38 +08:00
|
|
|
/**
|
2014-08-14 00:13:50 +08:00
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public static $MessageListCountLimitTrigger = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public static $MessageListUndeletedFilter = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public static $MessageListDateFilter = 0;
|
|
|
|
|
2014-09-02 17:54:22 +08:00
|
|
|
/**
|
2014-09-19 15:35:33 +08:00
|
|
|
* @var bool
|
2014-09-02 17:54:22 +08:00
|
|
|
*/
|
|
|
|
public static $LogSimpleLiterals = false;
|
|
|
|
|
2014-09-19 15:35:33 +08:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public static $PreferStartTlsIfAutoDetect = true;
|
|
|
|
|
2014-08-14 00:13:50 +08:00
|
|
|
/**
|
|
|
|
* @var \MailSo\Log\Logger|null
|
2014-07-30 19:57:38 +08:00
|
|
|
*/
|
|
|
|
public static $SystemLogger = null;
|
|
|
|
}
|