diff options
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 8421d93f6..ad2e17efa 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -427,6 +427,10 @@ $rcmail_config['quota_zero_as_unlimited'] = false; // requires to be compiled with Open SSL support $rcmail_config['enable_spellcheck'] = true; +// Enables spellchecker exceptions dictionary. +// Setting it to 'shared' will make the dictionary shared by all users. +$rcmail_config['spellcheck_dictionary'] = false; + // 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'; @@ -442,6 +446,15 @@ $rcmail_config['spellcheck_uri'] = ''; // Leave empty for default set of available language. $rcmail_config['spellcheck_languages'] = NULL; +// Makes that words with all letters capitalized will be ignored (e.g. GOOGLE) +$rcmail_config['spellcheck_ignore_caps'] = false; + +// Makes that words with numbers will be ignored (e.g. g00gle) +$rcmail_config['spellcheck_ignore_nums'] = false; + +// Makes that words with symbols will be ignored (e.g. g@@gle) +$rcmail_config['spellcheck_ignore_syms'] = false; + // don't let users set pagesize to more than this value if set $rcmail_config['max_pagesize'] = 200; |