mirror of
https://github.com/YunoHost-Apps/roundcube_ynh.git
synced 2024-09-03 20:16:28 +02:00
Update config.inc.php
This commit is contained in:
parent
afb046ad48
commit
938df81422
1 changed files with 12 additions and 19 deletions
|
@ -53,7 +53,7 @@ $config['default_host'] = '%t';
|
||||||
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
||||||
// %z - IMAP domain (IMAP hostname without the first part)
|
// %z - IMAP domain (IMAP hostname without the first part)
|
||||||
// For example %n = mail.domain.tld, %t = domain.tld
|
// For example %n = mail.domain.tld, %t = domain.tld
|
||||||
// To specify differnt SMTP servers for different IMAP hosts provide an array
|
// To specify different SMTP servers for different IMAP hosts provide an array
|
||||||
// of IMAP host (no prefix or port) and SMTP server e.g. ['imap.example.com' => 'smtp.example.net']
|
// of IMAP host (no prefix or port) and SMTP server e.g. ['imap.example.com' => 'smtp.example.net']
|
||||||
$config['smtp_server'] = 'tls://' . $main_domain;
|
$config['smtp_server'] = 'tls://' . $main_domain;
|
||||||
|
|
||||||
|
@ -142,7 +142,6 @@ $config['plugins'] = array(
|
||||||
'new_user_dialog',
|
'new_user_dialog',
|
||||||
'new_user_identity',
|
'new_user_identity',
|
||||||
'enigma',
|
'enigma',
|
||||||
// installed plugins
|
|
||||||
);
|
);
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -190,11 +189,5 @@ $config['ldapAliasSync'] = array(
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
// ----------------------------------
|
// skin name: folder from skins/
|
||||||
// LOCAL CONFIGURATION
|
$config['skin'] = 'elastic';
|
||||||
// ----------------------------------
|
|
||||||
|
|
||||||
$local_config = dirname(__FILE__) . '/local.inc.php';
|
|
||||||
if (file_exists($local_config)) {
|
|
||||||
include $local_config;
|
|
||||||
}
|
|
Loading…
Reference in a new issue