it didn't really parse all directories, eerhhmmm
[squirrelmail.git] / plugins / squirrelspell / sqspell_config.php
... / ...
CommitLineData
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 /* Just for poor wretched souls with E_ALL. :) */
15 global $username, $data_dir;
16
17
18 $SQSPELL_APP = array( 'English' => 'ispell -a',
19 'Spanish' => 'ispell -d spanish -a' );
20 $SQSPELL_APP_DEFAULT = 'English';
21 $SQSPELL_WORDS_FILE = "$data_dir/$username.words";
22 $SQSPELL_EREG = 'ereg';
23 $SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, Macintosh';
24
25?>