2014-10-01 05:26:23 +08:00
|
|
|
<?php
|
|
|
|
|
2014-10-17 18:15:19 +08:00
|
|
|
/*
|
|
|
|
* This file is part of MailSo.
|
|
|
|
*
|
|
|
|
* (c) 2014 Usenko Timur
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2014-10-01 05:26:23 +08:00
|
|
|
namespace MailSo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @category MailSo
|
|
|
|
*/
|
|
|
|
class Config
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public static $ICONV = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public static $MBSTRING = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public static $FixIconvByMbstring = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public static $MessageListFastSimpleSearch = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public static $MessageListCountLimitTrigger = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public static $MessageListDateFilter = 0;
|
|
|
|
|
2014-10-07 04:51:23 +08:00
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
2015-03-06 08:42:40 +08:00
|
|
|
public static $LargeThreadLimit = 50;
|
2014-10-07 04:51:23 +08:00
|
|
|
|
2014-10-01 05:26:23 +08:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public static $LogSimpleLiterals = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public static $PreferStartTlsIfAutoDetect = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \MailSo\Log\Logger|null
|
|
|
|
*/
|
|
|
|
public static $SystemLogger = null;
|
|
|
|
}
|