mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 00:38:04 +08:00
78 lines
1.1 KiB
PHP
78 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
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;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public static $MessageListPermanentFilter = '';
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public static $LargeThreadLimit = 50;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public static $LogSimpleLiterals = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public static $PreferStartTlsIfAutoDetect = true;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public static $BoundaryPrefix = '_Part_';
|
|
|
|
/**
|
|
* @var \MailSo\Log\Logger|null
|
|
*/
|
|
public static $SystemLogger = null;
|
|
}
|