mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
27 lines
578 B
PHP
27 lines
578 B
PHP
<?php
|
|
|
|
// Name this file as "include.php" to enable it.
|
|
|
|
//header('Strict-Transport-Security: max-age=31536000');
|
|
|
|
//define('USE_GZIP', true); // to use gzip encoded output
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
function __get_custom_data_full_path()
|
|
{
|
|
return '';
|
|
return dirname(__DIR__) . '/rainloop-data';
|
|
return '/var/external-rainloop-data-folder'; // custom data folder path
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
function __get_additional_configuration_name()
|
|
{
|
|
return '';
|
|
return defined('APP_SITE') && 0 < strlen(APP_SITE) ? APP_SITE.'.ini' : ''; // additional configuration file name
|
|
}
|
|
|