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',
43 'locale_path' => INSTALLDIR.'/locale',
46 'languages' => get_all_languages(),
48 array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
51 'broughtbyurl' => null,
53 'inviteonly' => false,
57 'shorturllength' => 30,
58 'dupelimit' => 60, // default for same person saying the same thing
61 'use_x_sendfile' => false,
62 'notice' => null // site wide notice text
65 array('database' => 'YOU HAVE TO SET THIS IN config.php',
66 'schema_location' => INSTALLDIR . '/classes',
67 'class_location' => INSTALLDIR . '/classes',
68 'require_prefix' => 'classes/',
72 'db_driver' => 'DB', # XXX: JanRain libs only work with DB
73 'quote_identifiers' => false,
75 'schemacheck' => 'runtime', // 'runtime' or 'script'
76 'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
77 'log_queries' => false, // true to log all DB queries
78 'log_slow_queries' => 0, // if set, log queries taking over N seconds
79 'mysql_foreign_keys' => false), // if set, enables experimental foreign key support on MySQL
81 array('appname' => 'statusnet', # for syslog
82 'priority' => 'debug', # XXX: currently ignored
83 'facility' => LOG_USER),
85 array('enabled' => false,
86 'subsystem' => 'db', # default to database, or 'stomp'
87 'stomp_server' => null,
88 'queue_basename' => '/queue/statusnet/',
89 'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
90 'stomp_username' => null,
91 'stomp_password' => null,
92 'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
93 'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
94 'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
95 'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
96 'monitor' => null, // URL to monitor ping endpoint (work in progress)
97 'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
98 'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
99 'debug_memory' => false, // true to spit memory usage to log
100 'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
101 'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
102 // Default will share all queues for all sites within each group.
103 // Specify as <group>/<queue> or <group>/<queue>/<site>,
104 // using nickname identifier as site.
106 // 'main/distrib' separate "distrib" queue covering all sites
107 // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
108 'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
109 'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
112 array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
113 'owner' => null, # can be name of content owner e.g. for enterprise
114 'url' => 'http://creativecommons.org/licenses/by/3.0/',
115 'title' => 'Creative Commons Attribution 3.0',
116 'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
118 array('backend' => 'mail',
120 'domain_check' => true),
122 array('blacklist' => array(),
123 'featured' => array()),
125 array('banned' => array(),
128 array('server' => null,
129 'dir' => INSTALLDIR . '/avatar/',
130 'path' => $_path . '/avatar/',
133 array('server' => null,
134 'dir' => INSTALLDIR . '/background/',
135 'path' => $_path . '/background/',
138 array('localonly' => true,
139 'blacklist' => array(),
140 'autosource' => array()),
142 array('server' => null,
147 array('enabled' => extension_loaded('zip')),
149 array('server' => null,
152 'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
153 array('server' => null,
158 array('enabled' => false, // whether to throttle edits; false by default
159 'count' => 20, // number of allowed messages in timespan
160 'timespan' => 600), // timespan for throttling
162 array('enabled' => false,
163 'server' => 'INVALID SERVER',
166 'encryption' => true,
167 'resource' => 'uniquename',
168 'password' => 'blahblahblah',
169 'host' => null, # only set if != server
170 'debug' => false, # print extra debug info
171 'public' => array()), # JIDs of users who want to receive the public stream
173 array('enabled' => true),
175 array('dropoff' => 864000.0, # controls weighting based on age
176 'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
178 array('dropoff' => 864000.0, # controls weighting based on age
179 'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
181 array('piddir' => '/var/run',
185 array('enabled' => true),
187 array('enabled' => true),
189 array('enabled' => false),
191 array('source' => 'StatusNet', # source attribute for Twitter
192 'taguri' => null), # base for tag URIs
194 array('signin' => true,
195 'consumer_key' => null,
196 'consumer_secret' => null),
198 array('base' => null),
200 array('notify' => array(),
203 array('enabled' => true), # ignored after 0.9.x
205 array('default' => null,
208 array('run' => 'web',
209 'frequency' => 10000,
210 'reporturl' => 'http://status.net/stats/report'),
212 array('server' => null,
213 'dir' => INSTALLDIR . '/file/',
214 'path' => $_path . '/file/',
218 'supported' => array('image/png',
226 'application/vnd.oasis.opendocument.text',
227 'application/vnd.oasis.opendocument.text-template',
228 'application/vnd.oasis.opendocument.graphics',
229 'application/vnd.oasis.opendocument.graphics-template',
230 'application/vnd.oasis.opendocument.presentation',
231 'application/vnd.oasis.opendocument.presentation-template',
232 'application/vnd.oasis.opendocument.spreadsheet',
233 'application/vnd.oasis.opendocument.spreadsheet-template',
234 'application/vnd.oasis.opendocument.chart',
235 'application/vnd.oasis.opendocument.chart-template',
236 'application/vnd.oasis.opendocument.image',
237 'application/vnd.oasis.opendocument.image-template',
238 'application/vnd.oasis.opendocument.formula',
239 'application/vnd.oasis.opendocument.formula-template',
240 'application/vnd.oasis.opendocument.text-master',
241 'application/vnd.oasis.opendocument.text-web',
249 'file_quota' => 5000000,
250 'user_quota' => 50000000,
251 'monthly_quota' => 15000000,
253 'filecommand' => '/usr/bin/file',
256 array('desclimit' => null),
258 array('maxaliases' => 3,
259 'desclimit' => null),
260 'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
262 array('type' => 'fulltext'),
264 array('handle' => false, // whether to handle sessions ourselves
265 'debug' => false), // debugging output for sessions
267 array('backgroundcolor' => null, // null -> 'use theme default'
268 'contentcolor' => null,
269 'sidebarcolor' => null,
272 'backgroundimage' => null,
273 'disposition' => null),
275 array('enabled' => true,
278 array('contentlimit' => null),
280 array('contentlimit' => null),
282 array('share' => 'user', // whether to share location; 'always', 'user', 'never'
283 'sharedefault' => true),
285 array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
287 array('disabled' => true),
289 array('default' => array('LilUrl' => array('shortenerName'=>'ur1.ca',
290 'freeService' => true,
291 'serviceUrl'=>'http://ur1.ca/'),
292 'PtitUrl' => array('shortenerName' => 'ptiturl.com',
293 'serviceUrl' => 'http://ptiturl.com/?creer=oui&action=Reduire&url=%1$s'),
294 'SimpleUrl' => array(array('shortenerName' => 'is.gd', 'serviceUrl' => 'http://is.gd/api.php?longurl=%1$s'),
295 array('shortenerName' => 'snipr.com', 'serviceUrl' => 'http://snipr.com/site/snip?r=simple&link=%1$s'),
296 array('shortenerName' => 'metamark.net', 'serviceUrl' => 'http://metamark.net/api/rest/simple?long_url=%1$s'),
297 array('shortenerName' => 'tinyurl.com', 'serviceUrl' => 'http://tinyurl.com/api-create.php?url=%1$s')),
298 'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'),
300 'Mapstraction' => null,
302 'WikiHashtags' => null,
304 'ClientSideShorten' => null,
305 'StrictTransportSecurity' => null,
307 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
309 'pluginlist' => array(),
311 array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
313 array('enabled' => false,
316 array('crawldelay' => 0,
317 'disallow' => array('main', 'settings', 'admin', 'search', 'message')
320 array('realm' => null),
322 array('subscribers' => true,
325 'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
327 array('shortener' => 'ur1.ca',
329 'maxnoticelength' => -1),
330 'http' => // HTTP client settings when contacting other sites
331 array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
332 'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)