%PDF- %PDF-
Direktori : /www/varak.net/mail2.varak.net_old/libraries/afterlogic/common/ |
Current File : /www/varak.net/mail2.varak.net_old/libraries/afterlogic/common/constants.php |
<?php /* * Copyright 2004-2014, AfterLogic Corp. * Licensed under AGPLv3 license or AfterLogic license * if commercial version of the product was purchased. * See the LICENSE file for a full license statement. */ define('API_PATH_TO_WEBMAIL', '/../../'); define('API_CRLF', "\r\n"); define('API_TAB', "\t"); define('API_P7', true); define('API_SESSION_WEBMAIL_NAME', 'PHPWEBMAILSESSID'); define('API_SESSION_ADMINPANEL_NAME', 'PHPWMADMINSESSID'); define('API_SESSION_CSRF_TOKEN', 'API_CSRF_TOKEN'); define('API_INC_PROTOCOL_POP3_DEF_PORT', 110); define('API_INC_PROTOCOL_IMAP4_DEF_PORT', 143); define('API_INC_PROTOCOL_SMTP_DEF_PORT', 25); define('API_DEFAULT_SKIN', 'Default'); define('API_DUMMY', '*******'); define('API_HELPDESK_PUBLIC_NAME', '_helpdesk_'); // timezone fix $sDefaultTimeZone = function_exists('date_default_timezone_get') ? @date_default_timezone_get() : 'US/Pacific'; define('API_SERVER_TIME_ZONE', ($sDefaultTimeZone && 0 < strlen($sDefaultTimeZone)) ? $sDefaultTimeZone : 'US/Pacific'); if (defined('API_SERVER_TIME_ZONE') && function_exists('date_default_timezone_set')) { @date_default_timezone_set(API_SERVER_TIME_ZONE); } unset($sDefaultTimeZone);