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