3 * StatusNet, the distributed open-source microblogging tool
5 * Default settings for core configuration
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2008-9 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
32 array('name' => 'Just another StatusNet microblog',
33 'nickname' => 'statusnet',
42 'locale_path' => INSTALLDIR.'/locale',
45 'languages' => get_all_languages(),
47 array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
50 'broughtbyurl' => null,
52 'inviteonly' => false,
56 'shorturllength' => 30,
57 'dupelimit' => 60, // default for same person saying the same thing
60 'use_x_sendfile' => false,
61 'notice' => null // site wide notice text
64 array('database' => 'YOU HAVE TO SET THIS IN config.php',
65 'schema_location' => INSTALLDIR . '/classes',
66 'class_location' => INSTALLDIR . '/classes',
67 'require_prefix' => 'classes/',
71 'db_driver' => 'DB', # XXX: JanRain libs only work with DB
72 'quote_identifiers' => false,
74 'schemacheck' => 'runtime', // 'runtime' or 'script'
75 'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
76 'log_queries' => false, // true to log all DB queries
77 'log_slow_queries' => 0), // if set, log queries taking over N seconds
79 array('appname' => 'statusnet', # for syslog
80 'priority' => 'debug', # XXX: currently ignored
81 'facility' => LOG_USER),
83 array('enabled' => false,
84 'subsystem' => 'db', # default to database, or 'stomp'
85 'stomp_server' => null,
86 'queue_basename' => '/queue/statusnet/',
87 'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
88 'stomp_username' => null,
89 'stomp_password' => null,
90 'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
91 'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
92 'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
93 'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
94 'monitor' => null, // URL to monitor ping endpoint (work in progress)
95 'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
96 'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
97 'debug_memory' => false, // true to spit memory usage to log
98 'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
99 'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
100 // Default will share all queues for all sites within each group.
101 // Specify as <group>/<queue> or <group>/<queue>/<site>,
102 // using nickname identifier as site.
104 // 'main/distrib' separate "distrib" queue covering all sites
105 // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
106 'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
107 'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
110 array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
111 'owner' => null, # can be name of content owner e.g. for enterprise
112 'url' => 'http://creativecommons.org/licenses/by/3.0/',
113 'title' => 'Creative Commons Attribution 3.0',
114 'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
116 array('backend' => 'mail',
118 'domain_check' => true),
120 array('blacklist' => array(),
121 'featured' => array()),
123 array('banned' => array(),
126 array('server' => null,
127 'dir' => INSTALLDIR . '/avatar/',
128 'path' => $_path . '/avatar/',
131 array('server' => null,
132 'dir' => INSTALLDIR . '/background/',
133 'path' => $_path . '/background/',
136 array('localonly' => true,
137 'blacklist' => array(),
138 'autosource' => array()),
140 array('server' => null,
145 array('enabled' => extension_loaded('zip')),
147 array('server' => null,
150 'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
151 array('server' => null,
156 array('enabled' => false, // whether to throttle edits; false by default
157 'count' => 20, // number of allowed messages in timespan
158 'timespan' => 600), // timespan for throttling
160 array('enabled' => false,
161 'server' => 'INVALID SERVER',
164 'encryption' => true,
165 'resource' => 'uniquename',
166 'password' => 'blahblahblah',
167 'host' => null, # only set if != server
168 'debug' => false, # print extra debug info
169 'public' => array()), # JIDs of users who want to receive the public stream
171 array('enabled' => true),
173 array('dropoff' => 864000.0, # controls weighting based on age
174 'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
176 array('dropoff' => 864000.0, # controls weighting based on age
177 'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
179 array('piddir' => '/var/run',
183 array('enabled' => true),
185 array('enabled' => true),
187 array('enabled' => false),
189 array('source' => 'StatusNet', # source attribute for Twitter
190 'taguri' => null), # base for tag URIs
192 array('signin' => true,
193 'consumer_key' => null,
194 'consumer_secret' => null),
196 array('base' => null),
198 array('notify' => array(),
201 array('enabled' => true), # ignored after 0.9.x
203 array('default' => null,
206 array('run' => 'web',
207 'frequency' => 10000,
208 'reporturl' => 'http://status.net/stats/report'),
210 array('server' => null,
211 'dir' => INSTALLDIR . '/file/',
212 'path' => $_path . '/file/',
214 'supported' => array('image/png',
222 'application/vnd.oasis.opendocument.text',
223 'application/vnd.oasis.opendocument.text-template',
224 'application/vnd.oasis.opendocument.graphics',
225 'application/vnd.oasis.opendocument.graphics-template',
226 'application/vnd.oasis.opendocument.presentation',
227 'application/vnd.oasis.opendocument.presentation-template',
228 'application/vnd.oasis.opendocument.spreadsheet',
229 'application/vnd.oasis.opendocument.spreadsheet-template',
230 'application/vnd.oasis.opendocument.chart',
231 'application/vnd.oasis.opendocument.chart-template',
232 'application/vnd.oasis.opendocument.image',
233 'application/vnd.oasis.opendocument.image-template',
234 'application/vnd.oasis.opendocument.formula',
235 'application/vnd.oasis.opendocument.formula-template',
236 'application/vnd.oasis.opendocument.text-master',
237 'application/vnd.oasis.opendocument.text-web',
245 'file_quota' => 5000000,
246 'user_quota' => 50000000,
247 'monthly_quota' => 15000000,
249 'filecommand' => '/usr/bin/file',
252 array('desclimit' => null),
254 array('maxaliases' => 3,
255 'desclimit' => null),
256 'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
258 array('type' => 'fulltext'),
260 array('handle' => false, // whether to handle sessions ourselves
261 'debug' => false), // debugging output for sessions
263 array('backgroundcolor' => null, // null -> 'use theme default'
264 'contentcolor' => null,
265 'sidebarcolor' => null,
268 'backgroundimage' => null,
269 'disposition' => null),
271 array('enabled' => true,
274 array('contentlimit' => null),
276 array('contentlimit' => null),
278 array('share' => 'user', // whether to share location; 'always', 'user', 'never'
279 'sharedefault' => true),
281 array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
283 array('disabled' => true),
285 array('default' => array('LilUrl' => array('shortenerName'=>'ur1.ca',
286 'freeService' => true,
287 'serviceUrl'=>'http://ur1.ca/'),
288 'PtitUrl' => array('shortenerName' => 'ptiturl.com',
289 'serviceUrl' => 'http://ptiturl.com/?creer=oui&action=Reduire&url=%1$s'),
290 'SimpleUrl' => array(array('shortenerName' => 'is.gd', 'serviceUrl' => 'http://is.gd/api.php?longurl=%1$s'),
291 array('shortenerName' => 'snipr.com', 'serviceUrl' => 'http://snipr.com/site/snip?r=simple&link=%1$s'),
292 array('shortenerName' => 'metamark.net', 'serviceUrl' => 'http://metamark.net/api/rest/simple?long_url=%1$s'),
293 array('shortenerName' => 'tinyurl.com', 'serviceUrl' => 'http://tinyurl.com/api-create.php?url=%1$s')),
294 'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'),
296 'Mapstraction' => null,
298 'WikiHashtags' => null,
303 array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice')),
305 array('enabled' => false,
308 array('crawldelay' => 0,
309 'disallow' => array('main', 'settings', 'admin', 'search', 'message')
312 array('realm' => null),
314 array('subscribers' => true,
316 'peopletag' => true),
317 'http' => // HTTP client settings when contacting other sites
318 array('ssl_cafile' => false // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')