mirror of
https://github.com/Mailu/Mailu.git
synced 2025-06-08 23:46:30 +02:00
doh
This commit is contained in:
parent
0dd93c16e5
commit
6be9ce8b65
@ -881,17 +881,15 @@ How can I add more languages to roundcube's spellchecker?
|
|||||||
|
|
||||||
If you are comfortable using an online spellchecker, the easiest is to configure the following via an override:
|
If you are comfortable using an online spellchecker, the easiest is to configure the following via an override:
|
||||||
|
|
||||||
```
|
.. code-block:: php
|
||||||
$config['spellcheck_engine'] = 'googie';
|
$config['spellcheck_engine'] = 'googie';
|
||||||
$config['spellcheck_ignore_caps'] = true;
|
$config['spellcheck_ignore_caps'] = true;
|
||||||
$config['spellcheck_ignore_nums'] = true;
|
$config['spellcheck_ignore_nums'] = true;
|
||||||
$config['spellcheck_dictionary'] = true;
|
$config['spellcheck_dictionary'] = true;
|
||||||
```
|
|
||||||
|
|
||||||
If not, you can download the `aspell dictionary`_ you require and place it in ``/usr/share/aspell/`` and then enable it by tweaking the following in the configuration file:
|
If not, you can download the `aspell dictionary`_ you require and place it in ``/usr/share/aspell/`` and then enable it by tweaking the following in the configuration file:
|
||||||
|
|
||||||
```
|
.. code-block:: php
|
||||||
$config['spellcheck_languages'] = array('en'=>'English', ...);
|
$config['spellcheck_languages'] = array('en'=>'English', ...);
|
||||||
```
|
|
||||||
|
|
||||||
.. _`aspell dictionary`: http://ftp.gnu.org/gnu/aspell/dict/0index.html
|
.. _`aspell dictionary`: http://ftp.gnu.org/gnu/aspell/dict/0index.html
|
||||||
|
@ -13,7 +13,7 @@ $config['log_driver'] = 'stdout';
|
|||||||
$config['zipdownload_selection'] = true;
|
$config['zipdownload_selection'] = true;
|
||||||
$config['enable_spellcheck'] = true;
|
$config['enable_spellcheck'] = true;
|
||||||
$config['spellcheck_engine'] = 'pspell';
|
$config['spellcheck_engine'] = 'pspell';
|
||||||
$config['spellcheck_languages'] = array('en'=>'English (US)', 'en'=>'English (UK)', 'de'=>'Deutsch', 'fr'=>'French', 'ru'=>'Russian');
|
$config['spellcheck_languages'] = array('en'=>'English (US)', 'uk'=>'English (UK)', 'de'=>'Deutsch', 'fr'=>'French', 'ru'=>'Russian');
|
||||||
$config['session_lifetime'] = {{ (((PERMANENT_SESSION_LIFETIME | default(10800)) | int)/3600) | int }};
|
$config['session_lifetime'] = {{ (((PERMANENT_SESSION_LIFETIME | default(10800)) | int)/3600) | int }};
|
||||||
$config['request_path'] = '{{ WEB_WEBMAIL or "none" }}';
|
$config['request_path'] = '{{ WEB_WEBMAIL or "none" }}';
|
||||||
$config['trusted_host_patterns'] = [ {{ HOSTNAMES.split(",") | map("tojson") | join(',') }}];
|
$config['trusted_host_patterns'] = [ {{ HOSTNAMES.split(",") | map("tojson") | join(',') }}];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user