File squirrelmail-1.4.19-hunspell.patch of Package squirrelmail
diff -up squirrelmail-1.4.19/plugins/squirrelspell/sqspell_config.php.hunspell squirrelmail-1.4.19/plugins/squirrelspell/sqspell_config.php
--- squirrelmail-1.4.19/plugins/squirrelspell/sqspell_config.php.hunspell 2009-06-30 12:19:39.340190870 +0200
+++ squirrelmail-1.4.19/plugins/squirrelspell/sqspell_config.php 2009-06-30 12:20:46.363817340 +0200
@@ -20,18 +20,17 @@ sqgetGlobalVar('username', $username, SQ
/**
* Example:
*
- * $SQSPELL_APP = array( 'English' => 'ispell -a',
- * 'Spanish' => 'ispell -d spanish -a' );
- * You can replace ispell with aspell keeping the same commandline:
+ * $SQSPELL_APP = array( 'English' => 'hunspell -a',
+ * 'Spanish' => 'hunspell -d spanish -a' );
+ * You can replace hunspell with aspell keeping the same commandline:
* $SQSPELL_APP = array( 'English' => 'aspell -a',
* 'Spanish' => 'aspell -d spanish -a' );
*/
-$SQSPELL_APP = array('English' => 'ispell -a',
- 'Spanish' => 'ispell -d spanish -a');
+$SQSPELL_APP = array('English' => 'hunspell -a');
$SQSPELL_APP_DEFAULT = 'English';
$SQSPELL_WORDS_FILE =
getHashedFile($username, $data_dir, "$username.words");
$SQSPELL_EREG = 'ereg';
-?>
\ No newline at end of file
+?>