mirror of
https://github.com/optim-enterprises-bv/Mailu.git
synced 2025-11-02 19:18:07 +00:00
Document in the FAQ
This commit is contained in:
20
docs/faq.rst
20
docs/faq.rst
@@ -875,3 +875,23 @@ We have seen a fair amount of support requests related to the following:
|
|||||||
- `coredns has a bug`_ that we have now worked around
|
- `coredns has a bug`_ that we have now worked around
|
||||||
|
|
||||||
.. _`coredns has a bug`: https://github.com/coredns/coredns/issues/5189
|
.. _`coredns has a bug`: https://github.com/coredns/coredns/issues/5189
|
||||||
|
|
||||||
|
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:
|
||||||
|
|
||||||
|
```
|
||||||
|
$config['spellcheck_engine'] = 'googie';
|
||||||
|
$config['spellcheck_ignore_caps'] = true;
|
||||||
|
$config['spellcheck_ignore_nums'] = true;
|
||||||
|
$config['spellcheck_dictionary'] = true;
|
||||||
|
```
|
||||||
|
|
||||||
|
If not, you can download the `aspell dictionnary`_ you require and place it in ``/usr/share/aspell/``. And then enable it by tweaking the following in the configuration file:
|
||||||
|
|
||||||
|
```
|
||||||
|
$config['spellcheck_languages'] = array('en'=>'English', ...);
|
||||||
|
```
|
||||||
|
|
||||||
|
.. _`aspell dictionnary`: http://ftp.gnu.org/gnu/aspell/dict/0index.html
|
||||||
|
|||||||
Reference in New Issue
Block a user