1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Vincent Bernat <bernat@debian.org>
Date: Sun, 5 Jul 2009 09:53:17 +0200
Subject: Use enchant spellchecker engine by default.
We don't want to send messages to a 3rd party…
Forwarded: not-needed
---
config/defaults.inc.php | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/config/defaults.inc.php b/config/defaults.inc.php
index 5e2262c..282d502 100644
--- a/config/defaults.inc.php
+++ b/config/defaults.inc.php
@@ -948,7 +948,8 @@ $config['spellcheck_dictionary'] = false;
// Since Google shut down their public spell checking service, the default settings
// connect to https://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';
+// Debian: default to enchant to not trigger external APIs
+$config['spellcheck_engine'] = 'enchant';
// For locally installed Nox Spell Server or After the Deadline services,
// please specify the URI to call it.
|