diff --git a/towncrier/newsfragments/2798.bugfix b/towncrier/newsfragments/2798.bugfix new file mode 100644 index 00000000..84af6000 --- /dev/null +++ b/towncrier/newsfragments/2798.bugfix @@ -0,0 +1 @@ +Allow other supported languages in Roundcube's spellchecker diff --git a/webmails/roundcube/config/config.inc.php b/webmails/roundcube/config/config.inc.php index 3af8c38c..cef945d6 100644 --- a/webmails/roundcube/config/config.inc.php +++ b/webmails/roundcube/config/config.inc.php @@ -13,6 +13,7 @@ $config['log_driver'] = 'stdout'; $config['zipdownload_selection'] = true; $config['enable_spellcheck'] = true; $config['spellcheck_engine'] = 'pspell'; +$config['spellcheck_languages'] = array('en'=>'English (US)', 'en'=>'English (UK)', 'de'=>'Deutsch', 'fr'=>'French', 'ru'=>'Russian'); $config['session_lifetime'] = {{ (((PERMANENT_SESSION_LIFETIME | default(10800)) | int)/3600) | int }}; $config['request_path'] = '{{ WEB_WEBMAIL or "none" }}'; $config['trusted_host_patterns'] = [ {{ HOSTNAMES.split(",") | map("tojson") | join(',') }}];