]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
Qvitter API changes (thanks hannes2peer)
[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' => 'neo',
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' => true,
56               'private' => true,
57               'ssl' => 'never',
58               'sslserver' => null,
59               'dupelimit' => 60, // default for same person saying the same thing
60               'textlimit' => 0, // in chars; 0 == no limit
61               'indent' => true,
62               'use_x_sendfile' => false,
63               'notice' => null, // site wide notice text
64               'build' => 1, // build number, for code-dependent cache
65               'minify' => false, // true to use the minified versions of JS files; false to use orig files. Can aid during development
66               ),
67         'db' =>
68           array('database' => null, // must be set
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         'image' =>
135         array('jpegquality' => 85),
136         'avatar' =>
137         array('server' => null,
138               'dir' => INSTALLDIR . '/avatar/',
139               'path' => $_path . '/avatar/',
140               'ssl' => null,
141               'maxsize' => 300),
142         'background' =>
143         array('server' => null,
144               'dir' => INSTALLDIR . '/background/',
145               'path' => $_path . '/background/',
146               'ssl' => null),
147         'public' =>
148         array('localonly' => true,
149               'blacklist' => array(),
150               'autosource' => array()),
151         'theme' =>
152         array('server' => null,
153               'dir' => null,
154               'path'=> null,
155               'ssl' => null),
156         'usertheme' =>
157         array('linkcolor' => 'black',
158               'backgroundcolor' => 'black'),
159         'theme_upload' =>
160         array('enabled' => extension_loaded('zip')),
161         'javascript' =>
162         array('server' => null,
163               'path'=> null,
164               'ssl' => null,
165               'bustframes' => true),
166         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
167         array('server' => null,
168               'dir' => null,
169               'path' => null,
170               'ssl' => null),
171         'throttle' =>
172         array('enabled' => false, // whether to throttle edits; false by default
173               'count' => 20, // number of allowed messages in timespan
174               'timespan' => 600), // timespan for throttling
175         'xmpp' =>
176         array('enabled' => false,
177               'server' => 'INVALID SERVER',
178               'port' => 5222,
179               'user' => 'update',
180               'encryption' => true,
181               'resource' => 'uniquename',
182               'password' => 'blahblahblah',
183               'host' => null, # only set if != server
184               'debug' => false, # print extra debug info
185               'public' => array()), # JIDs of users who want to receive the public stream
186         'invite' =>
187         array('enabled' => true),
188         'tag' =>
189         array('dropoff' => 864000.0,   # controls weighting based on age
190               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
191         'popular' =>
192         array('dropoff' => 864000.0,   # controls weighting based on age
193               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
194         'daemon' =>
195         array('piddir' => '/var/run',
196               'user' => false,
197               'group' => false),
198         'emailpost' =>
199         array('enabled' => false),
200         'sms' =>
201         array('enabled' => false),
202         'twitterimport' =>
203         array('enabled' => false),
204         'integration' =>
205         array('source' => 'StatusNet', # source attribute for Twitter
206               'taguri' => null), # base for tag URIs
207         'twitter' =>
208         array('signin' => true,
209               'consumer_key' => null,
210               'consumer_secret' => null),
211         'cache' =>
212         array('base' => null),
213         'ping' =>
214         array('notify' => array(),
215               'timeout' => 2),
216         'inboxes' =>
217         array('enabled' => true), # ignored after 0.9.x
218         'newuser' =>
219         array('default' => null,
220               'welcome' => null),
221         'snapshot' =>
222         array('run' => 'web',
223               'frequency' => 10000,
224               'reporturl' => 'http://status.net/stats/report'),
225         'attachments' =>
226         array('server' => null,
227               'dir' => INSTALLDIR . '/file/',
228               'path' => $_path . '/file/',
229               'sslserver' => null,
230               'sslpath' => null,
231               'ssl' => null,
232               'supported' => array('image/png',
233                                    'image/jpeg',
234                                    'image/gif',
235                                    'image/svg+xml',
236                                    'audio/mpeg',
237                                    'audio/x-speex',
238                                    'application/ogg',
239                                    'application/pdf',
240                                    'application/vnd.oasis.opendocument.text',
241                                    'application/vnd.oasis.opendocument.text-template',
242                                    'application/vnd.oasis.opendocument.graphics',
243                                    'application/vnd.oasis.opendocument.graphics-template',
244                                    'application/vnd.oasis.opendocument.presentation',
245                                    'application/vnd.oasis.opendocument.presentation-template',
246                                    'application/vnd.oasis.opendocument.spreadsheet',
247                                    'application/vnd.oasis.opendocument.spreadsheet-template',
248                                    'application/vnd.oasis.opendocument.chart',
249                                    'application/vnd.oasis.opendocument.chart-template',
250                                    'application/vnd.oasis.opendocument.image',
251                                    'application/vnd.oasis.opendocument.image-template',
252                                    'application/vnd.oasis.opendocument.formula',
253                                    'application/vnd.oasis.opendocument.formula-template',
254                                    'application/vnd.oasis.opendocument.text-master',
255                                    'application/vnd.oasis.opendocument.text-web',
256                                    'application/x-zip',
257                                    'application/zip',
258                                    'text/plain',
259                                    'video/mpeg',
260                                    'video/mp4',
261                                    'video/quicktime',
262                                    'video/mpeg'),
263               'file_quota' => 5000000,
264               'user_quota' => 50000000,
265               'monthly_quota' => 15000000,
266               'uploads' => true,
267               'filecommand' => '/usr/bin/file',
268               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
269               'thumb_width' => 100,
270               'thumb_height' => 75,
271               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
272               ),
273         'application' =>
274         array('desclimit' => null),
275         'group' =>
276         array('maxaliases' => 3,
277               'desclimit' => null,
278               'addtag' => false),
279         'peopletag' =>
280         array('maxtags' => 100, // maximum number of tags a user can create.
281               'maxpeople' => 500, // maximum no. of people with the same tag by the same user
282               'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true)
283               'desclimit' => null),
284         'oembed' =>
285         array('endpoint' => 'https://noembed.com/embed/',
286               'order' => array('built-in', 'well-known', 'service', 'discovery'),
287         ),
288         'search' =>
289         array('type' => 'like'),
290         'sessions' =>
291         array('handle' => false,   // whether to handle sessions ourselves
292               'debug' => false,    // debugging output for sessions
293               'gc_limit' => 1000), // max sessions to expire at a time
294         'notice' =>
295         array('contentlimit' => null,
296               'defaultscope' => null, // null means 1 if site/private, 0 otherwise
297               'hidespam' => false), // Whether to hide silenced users from timelines
298         'message' =>
299         array('contentlimit' => null),
300         'location' =>
301         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
302               'sharedefault' => false),
303         'omb' =>
304         array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
305         'logincommand' =>
306         array('disabled' => true),
307         'plugins' =>
308         array('default' => array('Geonames' => null,
309                                  'ClientSideShorten' => null,
310                                  'StrictTransportSecurity' => null,
311                                  'Bookmark' => null,
312                                  'Event' => null,
313                                  'Poll' => null,
314                                  'QnA' => null,
315                                  'SearchSub' => null,
316                                  'TagSub' => null,
317                                  'OpenID' => null,
318                                  'Directory' => null,
319                                  'ExtendedProfile' => null,
320                                  'Activity' => null),
321               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
322               'server' => null,
323               'sslserver' => null,
324               'path' => null,
325               'sslpath' => null,
326               ),
327         'pluginlist' => array(),
328         'admin' =>
329         array('panels' => array('site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
330         'singleuser' =>
331         array('enabled' => false,
332               'nickname' => null),
333         'robotstxt' =>
334         array('crawldelay' => 0,
335               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
336               ),
337         'api' =>
338         array('realm' => null),
339         'nofollow' =>
340         array('subscribers' => true,
341               'members' => true,
342               'peopletag' => true,
343               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
344         'url' =>
345         array('shortener' => 'internal',
346               'maxlength' => 100,
347               'maxnoticelength' => -1),
348         'http' => // HTTP client settings when contacting other sites
349         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
350               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
351               'proxy_host' => null,
352               'proxy_port' => null,
353               'proxy_user' => null,
354               'proxy_password' => null,
355               'proxy_auth_scheme' => null,
356               ),
357         'router' =>
358         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
359         'discovery' =>
360           array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
361         'performance' => array('high' => false) // disable some features for higher performance; default false
362     );