Introduction
This article provides the steps to enable Roundcube's spell check functionality.
Procedure
- Access the server's command line as the 'root' user via SSH or "Terminal" in WHM.
- Backup the default Roundcube configuration file.
cp -av /usr/local/cpanel/base/3rdparty/roundcube/config/config.inc.php{,.$(date +%s)}
- Open
/usr/local/cpanel/base/3rdparty/roundcube/config/config.inc.php
in your preferred text editor. - Locate the
$config['enable_spellcheck']
line.// Make use of the built-in spell checker. It is based on GoogieSpell.
$config['enable_spellcheck'] = false; - Change the value to
true
.// Make use of the built-in spell checker. It is based on GoogieSpell.
$config['enable_spellcheck'] = true; - Save the changes and exit the text editor.