Some changes. En-route. Most likely broken. ;)
[squirrelmail.git] / plugins / squirrelspell / sqspell_config.php
1 <?php
2 /**
3 * sqspell_config.php -- SquirrelSpell Configuration file.
4 *
5 * Copyright (c) 1999-2002 The SquirrelMail Project Team
6 * Licensed under the GNU GPL. For full terms see the file COPYING.
7 *
8 *
9 *
10 * $Id$
11 */
12
13 require_once('../functions/prefs.php');
14
15 /* Just for poor wretched souls with E_ALL. :) */
16 global $username, $data_dir;
17
18 /**
19 * Example:
20 *
21 * $SQSPELL_APP = array( 'English' => 'ispell -a',
22 * 'Spanish' => 'ispell -d spanish -a' );
23 */
24 $SQSPELL_APP = array('English' => 'ispell -a');
25 $SQSPELL_APP_DEFAULT = 'English';
26 $SQSPELL_WORDS_FILE =
27 getHashedFile($username, $data_dir, "$username.words");
28
29 $SQSPELL_EREG = 'ereg';
30 $SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, '
31 . 'Macintosh, OmniWeb';
32
33 ?>