mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 16:58:07 +08:00
290cf38b97
Threads sorting Big mailbox optimazations Added "labs.imap_message_list_date_filter" Added "labs.imap_message_list_count_limit_trigger" Added "labs.imap_message_list_hide_deleted_messages"
45 lines
614 B
PHP
45 lines
614 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 $MessageListCountLimitTrigger = 0;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public static $MessageListUndeletedFilter = false;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public static $MessageListDateFilter = 0;
|
|
|
|
/**
|
|
* @var \MailSo\Log\Logger|null
|
|
*/
|
|
public static $SystemLogger = null;
|
|
}
|