1
0
Fork 0
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:
ericgaspar 2021-10-18 23:01:24 +02:00
parent afb046ad48
commit 938df81422
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -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;
@ -133,16 +133,15 @@ $config['ldap_public']['yunohost'] = array(
// List of active plugins (in plugins/ directory) // List of active plugins (in plugins/ directory)
$config['plugins'] = array( $config['plugins'] = array(
'archive', 'archive',
'zipdownload', 'zipdownload',
// additionnal plugins // additionnal plugins
'http_authentication', 'http_authentication',
'managesieve', 'managesieve',
'markasjunk', 'markasjunk',
'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;
}