Roundcube Community Forum

 

use aspell

Started by zemlik, March 29, 2016, 12:15:23 PM

Previous topic - Next topic

zemlik

hello,
how do I enable aspell instead of google thing ?
the information on the web says to edit main.inc.php
which I don't have and can't see reference to spell checker in the files in config/

SKaero

Add the following option to your config/config.inc.php file and change accordingly

// Set the spell checking engine. Possible values:
// - 'googie'  - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting)
// - 'pspell'  - requires the PHP Pspell module and aspell installed
// - 'enchant' - requires the PHP Enchant module
// - 'atd'     - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API
// Since Google shut down their public spell checking service, the default settings
// connect to http://spell.roundcube.net which is a hosted service provided by Roundcube.
// You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly.
$config['spellcheck_engine'] = 'googie';

zemlik