moving functions to separate file, adding configuration files
[squirrelmail.git] / plugins / fortune / config_default.php
diff --git a/plugins/fortune/config_default.php b/plugins/fortune/config_default.php
new file mode 100644 (file)
index 0000000..7c70190
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+/**
+ * Default Fortune plugin configuration
+ * 
+ * Configuration defaults to /usr/games/fortune with short quotes
+ *
+ * @copyright (c) 2004 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage fortune
+ */
+
+/**
+ * program that displays quotes
+ * @global string $fortune_location
+ */
+$fortune_location = '/usr/games/fortune';
+
+/**
+ * options that have to be passed to program
+ * @global string $fortune_options
+ * @since 1.5.1
+ */
+$fortune_options = '-s';
+?>
\ No newline at end of file