Some code cleanups to read_body.php
[squirrelmail.git] / plugins / squirrelspell / sqspell_config.php
CommitLineData
849bdf42 1<?php
d112ed5a 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 */
849bdf42 12
d112ed5a 13require_once('../functions/prefs.php');
3392dc86 14
d112ed5a 15/* Just for poor wretched souls with E_ALL. :) */
16global $username, $data_dir;
849bdf42 17
d112ed5a 18/**
19 * Example:
20 *
21 * $SQSPELL_APP = array( 'English' => 'ispell -a',
22 * 'Spanish' => 'ispell -d spanish -a' );
23 */
2a917bbc 24$SQSPELL_APP = array('English' => 'ispell -a',
25 'Spanish' => 'ispell -d spanish -a');
d112ed5a 26$SQSPELL_APP_DEFAULT = 'English';
27$SQSPELL_WORDS_FILE =
28 getHashedFile($username, $data_dir, "$username.words");
849bdf42 29
d112ed5a 30$SQSPELL_EREG = 'ereg';
31$SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, '
32 . 'Macintosh, OmniWeb';
849bdf42 33
3392dc86 34?>