7c701907bee293e7903c4c9cdb10104930e0074f
[squirrelmail.git] / plugins / fortune / config_default.php
1 <?php
2 /**
3 * Default Fortune plugin configuration
4 *
5 * Configuration defaults to /usr/games/fortune with short quotes
6 *
7 * @copyright (c) 2004 The SquirrelMail Project Team
8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9 * @version $Id$
10 * @package plugins
11 * @subpackage fortune
12 */
13
14 /**
15 * program that displays quotes
16 * @global string $fortune_location
17 */
18 $fortune_location = '/usr/games/fortune';
19
20 /**
21 * options that have to be passed to program
22 * @global string $fortune_options
23 * @since 1.5.1
24 */
25 $fortune_options = '-s';
26 ?>