]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
documentation for people tags
[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               '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' => 'YOU HAVE TO SET THIS IN config.php',
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         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
161         array('server' => null,
162               'dir' => null,
163               'path' => null,
164               'ssl' => null),
165         'throttle' =>
166         array('enabled' => false, // whether to throttle edits; false by default
167               'count' => 20, // number of allowed messages in timespan
168               'timespan' => 600), // timespan for throttling
169         'xmpp' =>
170         array('enabled' => false,
171               'server' => 'INVALID SERVER',
172               'port' => 5222,
173               'user' => 'update',
174               'encryption' => true,
175               'resource' => 'uniquename',
176               'password' => 'blahblahblah',
177               'host' => null, # only set if != server
178               'debug' => false, # print extra debug info
179               'public' => array()), # JIDs of users who want to receive the public stream
180         'invite' =>
181         array('enabled' => true),
182         'tag' =>
183         array('dropoff' => 864000.0,   # controls weighting based on age
184               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
185         'popular' =>
186         array('dropoff' => 864000.0,   # controls weighting based on age
187               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
188         'daemon' =>
189         array('piddir' => '/var/run',
190               'user' => false,
191               'group' => false),
192         'emailpost' =>
193         array('enabled' => true),
194         'sms' =>
195         array('enabled' => true),
196         'twitterimport' =>
197         array('enabled' => false),
198         'integration' =>
199         array('source' => 'StatusNet', # source attribute for Twitter
200               'taguri' => null), # base for tag URIs
201         'twitter' =>
202         array('signin' => true,
203               'consumer_key' => null,
204               'consumer_secret' => null),
205         'cache' =>
206         array('base' => null),
207         'ping' =>
208         array('notify' => array(),
209               'timeout' => 2),
210         'inboxes' =>
211         array('enabled' => true), # ignored after 0.9.x
212         'newuser' =>
213         array('default' => null,
214               'welcome' => null),
215         'snapshot' =>
216         array('run' => 'web',
217               'frequency' => 10000,
218               'reporturl' => 'http://status.net/stats/report'),
219         'attachments' =>
220         array('server' => null,
221               'dir' => INSTALLDIR . '/file/',
222               'path' => $_path . '/file/',
223               'sslserver' => null,
224               'sslpath' => null,
225               'ssl' => null,
226               'supported' => array('image/png',
227                                    'image/jpeg',
228                                    'image/gif',
229                                    'image/svg+xml',
230                                    'audio/mpeg',
231                                    'audio/x-speex',
232                                    'application/ogg',
233                                    'application/pdf',
234                                    'application/vnd.oasis.opendocument.text',
235                                    'application/vnd.oasis.opendocument.text-template',
236                                    'application/vnd.oasis.opendocument.graphics',
237                                    'application/vnd.oasis.opendocument.graphics-template',
238                                    'application/vnd.oasis.opendocument.presentation',
239                                    'application/vnd.oasis.opendocument.presentation-template',
240                                    'application/vnd.oasis.opendocument.spreadsheet',
241                                    'application/vnd.oasis.opendocument.spreadsheet-template',
242                                    'application/vnd.oasis.opendocument.chart',
243                                    'application/vnd.oasis.opendocument.chart-template',
244                                    'application/vnd.oasis.opendocument.image',
245                                    'application/vnd.oasis.opendocument.image-template',
246                                    'application/vnd.oasis.opendocument.formula',
247                                    'application/vnd.oasis.opendocument.formula-template',
248                                    'application/vnd.oasis.opendocument.text-master',
249                                    'application/vnd.oasis.opendocument.text-web',
250                                    'application/x-zip',
251                                    'application/zip',
252                                    'text/plain',
253                                    'video/mpeg',
254                                    'video/mp4',
255                                    'video/quicktime',
256                                    'video/mpeg'),
257               'file_quota' => 5000000,
258               'user_quota' => 50000000,
259               'monthly_quota' => 15000000,
260               'uploads' => true,
261               'filecommand' => '/usr/bin/file',
262               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
263               'thumb_width' => 100,
264               'thumb_height' => 75,
265               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
266               ),
267         'application' =>
268         array('desclimit' => null),
269         'group' =>
270         array('maxaliases' => 3,
271               'desclimit' => null),
272         'peopletag' =>
273         array('maxtags' => 100, // maximum number of tags a user can create.
274               'maxpeople' => 500, // maximum no. of people with the same tag by the same user
275               'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true)
276               'desclimit' => null),
277         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
278         'search' =>
279         array('type' => 'fulltext'),
280         'sessions' =>
281         array('handle' => false,   // whether to handle sessions ourselves
282               'debug' => false,    // debugging output for sessions
283               'gc_limit' => 1000), // max sessions to expire at a time
284         'design' =>
285         array('backgroundcolor' => null, // null -> 'use theme default'
286               'contentcolor' => null,
287               'sidebarcolor' => null,
288               'textcolor' => null,
289               'linkcolor' => null,
290               'backgroundimage' => null,
291               'disposition' => null),
292         'custom_css' =>
293         array('enabled' => true,
294               'css' => ''),
295         'notice' =>
296         array('contentlimit' => null),
297         'message' =>
298         array('contentlimit' => null),
299         'location' =>
300         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
301               'sharedefault' => true),
302         'omb' =>
303         array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
304         'logincommand' =>
305         array('disabled' => true),
306         'plugins' =>
307         array('default' => array('Geonames' => null,
308                                  'Mapstraction' => null,
309                                  'OStatus' => null,
310                                  'WikiHashtags' => null,
311                                  'RSSCloud' => null,
312                                  'ClientSideShorten' => null,
313                                  'StrictTransportSecurity' => null,
314                                  'OpenID' => null),
315               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
316               'server' => null,
317               'sslserver' => null,
318               'path' => null,
319               'sslpath' => null,
320               ),
321         'pluginlist' => array(),
322         'admin' =>
323         array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
324         'singleuser' =>
325         array('enabled' => false,
326               'nickname' => null),
327         'robotstxt' =>
328         array('crawldelay' => 0,
329               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
330               ),
331         'api' =>
332         array('realm' => null),
333         'nofollow' =>
334         array('subscribers' => true,
335               'members' => true,
336               'peopletag' => true,
337               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
338         'url' =>
339         array('shortener' => 'ur1.ca',
340               'maxlength' => 25,
341               'maxnoticelength' => -1),
342         'http' => // HTTP client settings when contacting other sites
343         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
344               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
345               'proxy_host' => null,
346               'proxy_port' => null,
347               'proxy_user' => null,
348               'proxy_password' => null,
349               'proxy_auth_scheme' => null,
350               ),
351         'router' =>
352         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
353         );