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