diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-08-15 10:35:09 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-08-15 10:35:09 +0000 |
| commit | de5b04c5ba495d7bdc3f807cbedcdb7b377d5e00 (patch) | |
| tree | 99bd5e9412d7314629c89aa3505d09eb114a9ec4 /roundcubemail/config | |
| parent | d3ca93a34895a2b99cb07661e3b19421268af1db (diff) | |
Added pspell support patch by Kris Steinhoff (#1483960)
git-svn-id: https://svn.roundcube.net/trunk@1649 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
| -rw-r--r-- | roundcubemail/config/main.inc.php.dist | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist index e79e3f382..5f61b9fe7 100644 --- a/roundcubemail/config/main.inc.php.dist +++ b/roundcubemail/config/main.inc.php.dist @@ -189,6 +189,10 @@ $rcmail_config['default_charset'] = 'ISO-8859-1'; // requires to be compiled with Open SSL support $rcmail_config['enable_spellcheck'] = TRUE; +// Set the spell checking engine. 'googie' is the default. 'pspell' is also available, +// but requires the Pspell extensions. When using Nox Spell Server, also set 'googie' here. +$rcmail_config['spellcheck_engine'] = 'googie'; + // For a locally installed Nox Spell Server, please specify the URI to call it. // Get Nox Spell Server from http://orangoo.com/labs/?page_id=72 // Leave empty to use the Google spell checking service, what means @@ -197,7 +201,8 @@ $rcmail_config['spellcheck_uri'] = ''; // These languages can be selected for spell checking. // Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch'); -// Leave empty for default set of Google spell check languages +// Leave empty for default set of Google spell check languages, should be defined +// when using local Pspell extension $rcmail_config['spellcheck_languages'] = NULL; // path to a text file which will be added to each sent message |
