diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2019-03-14 16:49:07 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2019-03-14 16:49:07 +0100 |
commit | a2cd81602266d415a429a5ced942b77dd907d446 (patch) | |
tree | 046d7b15cf551d07d9cc992467a6d033473bdf1d | |
parent | ff9be33f7795163ee9811871398796920b610412 (diff) | |
download | pykolab-a2cd81602266d415a429a5ced942b77dd907d446.tar.gz |
Default setup configuration to match default package installation
-rw-r--r-- | share/templates/roundcubemail/config.inc.php.tpl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/share/templates/roundcubemail/config.inc.php.tpl b/share/templates/roundcubemail/config.inc.php.tpl index 928992b..663473c 100644 --- a/share/templates/roundcubemail/config.inc.php.tpl +++ b/share/templates/roundcubemail/config.inc.php.tpl @@ -105,10 +105,23 @@ \$config['message_sort_col'] = 'date'; + \$config['spellcheck_engine'] = 'pspell'; \$config['spellcheck_dictionary'] = true; \$config['spellcheck_ignore_caps'] = true; \$config['spellcheck_ignore_nums'] = true; \$config['spellcheck_ignore_syms'] = true; + \$config['spellcheck_languages'] = array( + 'da' => 'Dansk', + 'de' => 'Deutsch', + 'en' => 'English', + 'es' => 'Español', + 'fr' => 'Français', + 'it' => 'Italiano', + 'nl' => 'Nederlands', + 'pt' => 'Português', + 'ru' => 'Русский', + 'sv' => 'Svenska' + ); \$config['undo_timeout'] = 10; \$config['upload_progress'] = 2; |