Changing squirrelmail/Squirrelmail to SquirrelMail in some strings as well as other...
[squirrelmail.git] / plugins / squirrelspell / INSTALL
index 87750c7b0dab9393e03e6e77c21d208bdc2646a2..406d43c5f5c3b313967c7aea6cd616618c4fec80 100644 (file)
@@ -1,24 +1,29 @@
-SquirrelSpell-v0.3.1
----------------------
+SquirrelSpell plugin
+--------------------
 
-Untar SquirrelSpell into your squirrelmail/plugins directory. Move
-sqspell_config.dist to sqspell_config.php if this is a fresh install. If
-upgrading, just untar over your old installation.
-
-Modify the sqspell_config.php file making sure you have ispell or aspell
+Untar SquirrelSpell into your squirrelmail/plugins directory. Modify the
+sqspell_config.php file making sure you have ispell or aspell
 available on your system and located in PHP's path. The squirrelspell
 doesn't check for that and if it is not available, you're just going to
-get a "No errors found"  message every time. :) Quite pleasing, but not
+get a "No errors found" message every time. :) Quite pleasing, but not
 very useful.
 
 Read files in "doc" directory -- they explain some features.
 
 Enable the plugin either by hand or by running the configure script from
-your squirrelmail install directory.
+your SquirrelMail install directory.
+
+NOTE: If you are using php >= 4.3.0 squirrelspell should work in safe mode.
+Otherwise, you may have to disable safe mode for the squirrelspell directory.
+   APACHE CONF EXAMPLE:
+        <Directory /webroot/squirrelmail/plugins/squirrelspell>
+                php_admin_value safe_mode 0
+        </Directory>
+
 
 Enjoy and report bugs. ;)
 
-This is a commented sqspell_config.php
+This is an options commented sqspell_config.php
 
 <?php
 
@@ -57,11 +62,11 @@ This is a commented sqspell_config.php
        configure the array to look something like this:
 
        $SQSPELL_APP = array(
-                       "English" => "aspell -a",
+                            "English" => "aspell -a",
                             "Russian" => "ispell -d russian -a",
-                       ...
-                       "Swahili" => "ispell -d swahili -a"
-                      );
+                            ...
+                            "Swahili" => "ispell -d swahili -a"
+                           );
 
        Watch the commas, making sure there isn't one after your last
        dictionary declaration. Also, make sure all these dictionaries
@@ -116,4 +121,4 @@ This is a commented sqspell_config.php
                     Adding until resolved.
     **/
     $SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, Macintosh';
-?>    
\ No newline at end of file
+?>