]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / lib / default.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Default settings for core configuration
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Config
23  * @package   StatusNet
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/
28  */
29
30 $default =
31   array('site' =>
32         array('name' => 'Just another StatusNet microblog',
33               'nickname' => 'statusnet',
34               'wildcard' => null,
35               'server' => $_server,
36               'theme' => 'default',
37               'path' => $_path,
38               'logfile' => null,
39               'logo' => null,
40               'ssllogo' => null,
41               'logdebug' => false,
42               'logperf' => false, // Enable to dump performance counters to syslog
43               'logperf_detail' => false, // Enable to dump every counter hit
44               'fancy' => false,
45               'locale_path' => INSTALLDIR.'/locale',
46               'language' => 'en',
47               'langdetect' => true,
48               'languages' => get_all_languages(),
49               'email' =>
50               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
51               'broughtby' => null,
52               'timezone' => 'UTC',
53               'broughtbyurl' => null,
54               'closed' => false,
55               'inviteonly' => false,
56               'private' => false,
57               'ssl' => 'never',
58               'sslserver' => null,
59               'shorturllength' => 30,
60               'dupelimit' => 60, // default for same person saying the same thing
61               'textlimit' => 140,
62               'indent' => true,
63               'use_x_sendfile' => false,
64               'notice' => null, // site wide notice text
65               'build' => 1, // build number, for code-dependent cache
66               ),
67         'db' =>
68         array('database' => 'YOU HAVE TO SET THIS IN config.php',
69               'schema_location' => INSTALLDIR . '/classes',
70               'class_location' => INSTALLDIR . '/classes',
71               'require_prefix' => 'classes/',
72               'class_prefix' => '',
73               'mirror' => null,
74               'utf8' => true,
75               'db_driver' => 'DB', # XXX: JanRain libs only work with DB
76               'quote_identifiers' => false,
77               'type' => 'mysql',
78               'schemacheck' => 'runtime', // 'runtime' or 'script'
79               'annotate_queries' => false, // true to add caller comments to queries, eg /* POST Notice::saveNew */
80               'log_queries' => false, // true to log all DB queries
81               'log_slow_queries' => 0, // if set, log queries taking over N seconds
82               'mysql_foreign_keys' => false), // if set, enables experimental foreign key support on MySQL
83         'syslog' =>
84         array('appname' => 'statusnet', # for syslog
85               'priority' => 'debug', # XXX: currently ignored
86               'facility' => LOG_USER),
87         'queue' =>
88         array('enabled' => false,
89               'subsystem' => 'db', # default to database, or 'stomp'
90               'stomp_server' => null,
91               'queue_basename' => '/queue/statusnet/',
92               'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
93               'stomp_username' => null,
94               'stomp_password' => null,
95               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
96               'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
97               'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
98               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
99               'monitor' => null, // URL to monitor ping endpoint (work in progress)
100               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
101               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
102               'debug_memory' => false, // true to spit memory usage to log
103               'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
104               'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
105                                      // Default will share all queues for all sites within each group.
106                                      // Specify as <group>/<queue> or <group>/<queue>/<site>,
107                                      // using nickname identifier as site.
108                                      //
109                                      // 'main/distrib' separate "distrib" queue covering all sites
110                                      // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
111               'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
112               'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
113               ),
114         'license' =>
115         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
116               'owner' => null, # can be name of content owner e.g. for enterprise
117               'url' => 'http://creativecommons.org/licenses/by/3.0/',
118               'title' => 'Creative Commons Attribution 3.0',
119               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
120         'mail' =>
121         array('backend' => 'mail',
122               'params' => null,
123               'domain_check' => true),
124         'nickname' =>
125         array('blacklist' => array(),
126               'featured' => array()),
127         'profile' =>
128         array('banned' => array(),
129               'biolimit' => null,
130               'backup' => true,
131               'restore' => true,
132               'delete' => false,
133               'move' => true),
134         'avatar' =>
135         array('server' => null,
136               'dir' => INSTALLDIR . '/avatar/',
137               'path' => $_path . '/avatar/',
138               'ssl' => null),
139         'background' =>
140         array('server' => null,
141               'dir' => INSTALLDIR . '/background/',
142               'path' => $_path . '/background/',
143               'ssl' => null),
144         'public' =>
145         array('localonly' => true,
146               'blacklist' => array(),
147               'autosource' => array()),
148         'theme' =>
149         array('server' => null,
150               'dir' => null,
151               'path'=> null,
152               'ssl' => null),
153         'theme_upload' =>
154         array('enabled' => extension_loaded('zip')),
155         'javascript' =>
156         array('server' => null,
157               'path'=> null,
158               'ssl' => null),
159         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
160         array('server' => null,
161               'dir' => null,
162               'path' => null,
163               'ssl' => null),
164         'throttle' =>
165         array('enabled' => false, // whether to throttle edits; false by default
166               'count' => 20, // number of allowed messages in timespan
167               'timespan' => 600), // timespan for throttling
168         'xmpp' =>
169         array('enabled' => false,
170               'server' => 'INVALID SERVER',
171               'port' => 5222,
172               'user' => 'update',
173               'encryption' => true,
174               'resource' => 'uniquename',
175               'password' => 'blahblahblah',
176               'host' => null, # only set if != server
177               'debug' => false, # print extra debug info
178               'public' => array()), # JIDs of users who want to receive the public stream
179         'invite' =>
180         array('enabled' => true),
181         'tag' =>
182         array('dropoff' => 864000.0,   # controls weighting based on age
183               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
184         'popular' =>
185         array('dropoff' => 864000.0,   # controls weighting based on age
186               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
187         'daemon' =>
188         array('piddir' => '/var/run',
189               'user' => false,
190               'group' => false),
191         'emailpost' =>
192         array('enabled' => true),
193         'sms' =>
194         array('enabled' => true),
195         'twitterimport' =>
196         array('enabled' => false),
197         'integration' =>
198         array('source' => 'StatusNet', # source attribute for Twitter
199               'taguri' => null), # base for tag URIs
200         'twitter' =>
201         array('signin' => true,
202               'consumer_key' => null,
203               'consumer_secret' => null),
204         'cache' =>
205         array('base' => null),
206         'ping' =>
207         array('notify' => array(),
208               'timeout' => 2),
209         'inboxes' =>
210         array('enabled' => true), # ignored after 0.9.x
211         'newuser' =>
212         array('default' => null,
213               'welcome' => null),
214         'snapshot' =>
215         array('run' => 'web',
216               'frequency' => 10000,
217               'reporturl' => 'http://status.net/stats/report'),
218         'attachments' =>
219         array('server' => null,
220               'dir' => INSTALLDIR . '/file/',
221               'path' => $_path . '/file/',
222               'sslserver' => null,
223               'sslpath' => null,
224               'ssl' => null,
225               'supported' => array('image/png',
226                                    'image/jpeg',
227                                    'image/gif',
228                                    'image/svg+xml',
229                                    'audio/mpeg',
230                                    'audio/x-speex',
231                                    'application/ogg',
232                                    'application/pdf',
233                                    'application/vnd.oasis.opendocument.text',
234                                    'application/vnd.oasis.opendocument.text-template',
235                                    'application/vnd.oasis.opendocument.graphics',
236                                    'application/vnd.oasis.opendocument.graphics-template',
237                                    'application/vnd.oasis.opendocument.presentation',
238                                    'application/vnd.oasis.opendocument.presentation-template',
239                                    'application/vnd.oasis.opendocument.spreadsheet',
240                                    'application/vnd.oasis.opendocument.spreadsheet-template',
241                                    'application/vnd.oasis.opendocument.chart',
242                                    'application/vnd.oasis.opendocument.chart-template',
243                                    'application/vnd.oasis.opendocument.image',
244                                    'application/vnd.oasis.opendocument.image-template',
245                                    'application/vnd.oasis.opendocument.formula',
246                                    'application/vnd.oasis.opendocument.formula-template',
247                                    'application/vnd.oasis.opendocument.text-master',
248                                    'application/vnd.oasis.opendocument.text-web',
249                                    'application/x-zip',
250                                    'application/zip',
251                                    'text/plain',
252                                    'video/mpeg',
253                                    'video/mp4',
254                                    'video/quicktime',
255                                    'video/mpeg'),
256               'file_quota' => 5000000,
257               'user_quota' => 50000000,
258               'monthly_quota' => 15000000,
259               'uploads' => true,
260               'filecommand' => '/usr/bin/file',
261               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
262               'thumb_width' => 100,
263               'thumb_height' => 75,
264               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
265               ),
266         'application' =>
267         array('desclimit' => null),
268         'group' =>
269         array('maxaliases' => 3,
270               'desclimit' => null),
271         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
272         'search' =>
273         array('type' => 'fulltext'),
274         'sessions' =>
275         array('handle' => false,   // whether to handle sessions ourselves
276               'debug' => false,    // debugging output for sessions
277               'gc_limit' => 1000), // max sessions to expire at a time
278         'design' =>
279         array('backgroundcolor' => null, // null -> 'use theme default'
280               'contentcolor' => null,
281               'sidebarcolor' => null,
282               'textcolor' => null,
283               'linkcolor' => null,
284               'backgroundimage' => null,
285               'disposition' => null),
286         'custom_css' =>
287         array('enabled' => true,
288               'css' => ''),
289         'notice' =>
290         array('contentlimit' => null),
291         'message' =>
292         array('contentlimit' => null),
293         'location' =>
294         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
295               'sharedefault' => true),
296         'omb' =>
297         array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
298         'logincommand' =>
299         array('disabled' => true),
300         'plugins' =>
301         array('default' => array('Geonames' => null,
302                                  'Mapstraction' => null,
303                                  'OStatus' => null,
304                                  'WikiHashtags' => null,
305                                  'RSSCloud' => null,
306                                  'ClientSideShorten' => null,
307                                  'StrictTransportSecurity' => null,
308                                  'OpenID' => null),
309               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
310               'server' => null,
311               'sslserver' => null,
312               'path' => null,
313               'sslpath' => null,
314               ),
315         'pluginlist' => array(),
316         'admin' =>
317         array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
318         'singleuser' =>
319         array('enabled' => false,
320               'nickname' => null),
321         'robotstxt' =>
322         array('crawldelay' => 0,
323               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
324               ),
325         'api' =>
326         array('realm' => null),
327         'nofollow' =>
328         array('subscribers' => true,
329               'members' => true,
330               'peopletag' => true,
331               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
332         'url' =>
333         array('shortener' => 'ur1.ca',
334               'maxlength' => 25,
335               'maxnoticelength' => -1),
336         'http' => // HTTP client settings when contacting other sites
337         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
338               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
339               'proxy_host' => null,
340               'proxy_port' => null,
341               'proxy_user' => null,
342               'proxy_password' => null,
343               'proxy_auth_scheme' => null,
344               ),
345         'router' =>
346         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
347         );