Author Topic: use aspell  (Read 3164 times)

Offline zemlik

  • Jr. Member
  • **
  • Posts: 10
use aspell
« on: March 29, 2016, 12:15:23 PM »
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/

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: use aspell
« Reply #1 on: March 29, 2016, 02:01:41 PM »
Add the following option to your config/config.inc.php file and change accordingly
Code: [Select]
// 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';

Offline zemlik

  • Jr. Member
  • **
  • Posts: 10
Re: use aspell
« Reply #2 on: April 01, 2016, 12:15:41 AM »
cheers