mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
using "primary" to describe the domain of the box / mail server is confusing when working with multiple domains. Usually the box domain is different from the domain you want to host your mail for.
27 lines
748 B
PHP
27 lines
748 B
PHP
<?php
|
|
/***********************************************
|
|
* File : config.php
|
|
* Project : Z-Push
|
|
* Descr : Autodiscover configuration file
|
|
************************************************/
|
|
|
|
define('TIMEZONE', '');
|
|
|
|
// Defines the base path on the server
|
|
define('BASE_PATH', dirname($_SERVER['SCRIPT_FILENAME']). '/');
|
|
|
|
define('ZPUSH_HOST', 'BOX_HOSTNAME');
|
|
|
|
define('USE_FULLEMAIL_FOR_LOGIN', true);
|
|
|
|
define('LOGFILEDIR', '/var/log/z-push/');
|
|
define('LOGFILE', LOGFILEDIR . 'autodiscover.log');
|
|
define('LOGERRORFILE', LOGFILEDIR . 'autodiscover-error.log');
|
|
define('LOGLEVEL', LOGLEVEL_INFO);
|
|
define('LOGUSERLEVEL', LOGLEVEL);
|
|
$specialLogUsers = array();
|
|
|
|
// the backend data provider
|
|
define('BACKEND_PROVIDER', 'BackendCombined');
|
|
?>
|