summaryrefslogtreecommitdiff
path: root/forum/htdocs/config.php.defaults
blob: 8a67e56e1e0ce60e750e7fca4226c491afeefe8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
$UTIL_DIR = "../../forum/utils";
$DATA_DIR = "../../forum/data";
$FORUMS_DIR = "../../forum/data/forum";
$ADMIN_TIMEOUT = 100000;
$PERMSTORE = $DATA_DIR . "/files";
$IMAGECACHE = $DATA_DIR . "/imagecache";
$LOG_FILE = $DATA_DIR . "/forum.log";
$FILE_MAX_SIZE = 5*1024; // 5kb
$FORUM_URL = "http://www.example.com/forum";
$FORUM_TITLE = "Example CMS";

// Uncomment to use PostToGoogleCalendar through Zend
//$ZEND_DIR = $UTIL_DIR;
//$GOOGLE_CALENDAR_USER = "executionroom@gmail.com";
//$GOOGLE_CALENDAR_PASSWD = "pisoglort";

/**
 * Mail Configuration
 */
$subject_prefix = "CMS notifier";
$sender = "Example User <info@example.com>";
$replyto = $sender;
$footer = "----
Happy happy joy joy!";
$NOTIFY_RESEND = 60 * 60 * 24 * 7; // Resend notifications after a week.
?>