sqspell_config.php 800 B

12345678910111213141516171819202122232425262728293031323334
  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. require_once('../functions/prefs.php');
  13. /* Just for poor wretched souls with E_ALL. :) */
  14. global $username, $data_dir;
  15. /**
  16. * Example:
  17. *
  18. * $SQSPELL_APP = array( 'English' => 'ispell -a',
  19. * 'Spanish' => 'ispell -d spanish -a' );
  20. */
  21. $SQSPELL_APP = array('English' => 'ispell -a',
  22. 'Spanish' => 'ispell -d spanish -a');
  23. $SQSPELL_APP_DEFAULT = 'English';
  24. $SQSPELL_WORDS_FILE =
  25. getHashedFile($username, $data_dir, "$username.words");
  26. $SQSPELL_EREG = 'ereg';
  27. $SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, '
  28. . 'Macintosh, OmniWeb';
  29. ?>