Added option to do data and attachment directory hashing, up to four levels. Will...
[squirrelmail.git] / plugins / squirrelspell / sqspell_config.php
1 <?php
2
3 /**
4 * sqspell_config.php -- SquirrelSpell Configuration file.
5 *
6 * Copyright (c) 1999-2001 The SquirrelMail Development Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 *
10 *
11 * $Id$
12 */
13
14 require_once('../functions/prefs.php');
15
16 /* Just for poor wretched souls with E_ALL. :) */
17 global $username, $data_dir;
18
19 $SQSPELL_APP = array( 'English' => 'ispell -a',
20 'Spanish' => 'ispell -d spanish -a' );
21 $SQSPELL_APP_DEFAULT = 'English';
22 $SQSPELL_WORDS_FILE =
23 getHashedFile($username, $data_dir, "$username.words");
24 $SQSPELL_EREG = 'ereg';
25 $SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, Macintosh';
26
27 ?>