mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
31 lines
375 B
PHP
31 lines
375 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 \MailSo\Log\Logger
|
||
|
*/
|
||
|
public static $SystemLogger = null;
|
||
|
}
|