mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 16:58:07 +08:00
60 lines
774 B
PHP
60 lines
774 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 $MessageListFastSimpleSearch = true;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public static $MessageListCountLimitTrigger = 0;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public static $MessageListDateFilter = 0;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public static $LargeThreadLimit = 100;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public static $LogSimpleLiterals = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public static $PreferStartTlsIfAutoDetect = true;
|
|
|
|
/**
|
|
* @var \MailSo\Log\Logger|null
|
|
*/
|
|
public static $SystemLogger = null;
|
|
}
|