Sorry, typo.
[squirrelmail.git] / plugins / squirrelspell / sqspell_config.php
CommitLineData
849bdf42 1<?php
849bdf42 2
9804bcde 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 **/
849bdf42 13
9804bcde 14 /* Just for poor wretched souls with E_ALL. :) */
15 global $username, $data_dir;
849bdf42 16
849bdf42 17
d6a1308a 18 $SQSPELL_APP = array( 'English' => 'ispell -a' );
9804bcde 19 $SQSPELL_APP_DEFAULT = 'English';
20 $SQSPELL_WORDS_FILE = "$data_dir/$username.words";
21 $SQSPELL_EREG = 'ereg';
22 $SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, Macintosh';
849bdf42 23
9804bcde 24?>