]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
common_to_alphanumeric added, filtering Notice->source in classic layout
[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   GNUsocial
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://www.gnu.org/software/social/
28  */
29
30 $default =
31     array('site' =>
32         array('name' => 'Just another GNU social node',
33               'nickname' => 'gnusocial',
34               'wildcard' => null,
35               'server' => $_server,
36               'theme' => 'neo-gnu',
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               'fakeaddressrecovery' => true,
52               'broughtby' => null,
53               'timezone' => 'UTC',
54               'broughtbyurl' => null,
55               'closed' => false,
56               'inviteonly' => true,
57               'private' => false,
58               'ssl' => 'never',
59               'sslproxy' => false,   // set to true to force GNU social to think it is HTTPS (i.e. using reverse proxy to enable it)
60               'sslserver' => null,
61               'dupelimit' => 60, // default for same person saying the same thing
62               'textlimit' => 1000, // in chars; 0 == no limit
63               'indent' => true,
64               'use_x_sendfile' => false,
65               'notice' => null, // site wide notice text
66               'build' => 1, // build number, for code-dependent cache
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         'fix' =>
85         array('fancyurls' => true,   // makes sure aliases in WebFinger etc. are not f'd by index.php/ URLs
86               ),
87         'syslog' =>
88         array('appname' => 'statusnet', # for syslog
89               'priority' => 'debug', # XXX: currently ignored
90               'facility' => LOG_USER),
91         'queue' =>
92         array('enabled' => true,
93               'daemon' => false, # Use queuedaemon. Default to false
94               'subsystem' => 'db', # default to database, or 'stomp'
95               'stomp_server' => null,
96               'queue_basename' => '/queue/statusnet/',
97               'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
98               'stomp_username' => null,
99               'stomp_password' => null,
100               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
101               'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
102               'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
103               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
104               'monitor' => null, // URL to monitor ping endpoint (work in progress)
105               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
106               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
107               'debug_memory' => false, // true to spit memory usage to log
108               'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
109                                      // Default will share all queues for all sites within each group.
110                                      // Specify as <group>/<queue> or <group>/<queue>/<site>,
111                                      // using nickname identifier as site.
112                                      //
113                                      // 'main/distrib' separate "distrib" queue covering all sites
114                                      // 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
115               'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
116               'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
117               ),
118         'license' =>
119         array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
120               'owner' => null, # can be name of content owner e.g. for enterprise
121               'url' => 'https://creativecommons.org/licenses/by/3.0/',
122               'title' => 'Creative Commons Attribution 3.0',
123               'image' => $_path . '/theme/licenses/cc_by_3.0_80x15.png'),
124         'mail' =>
125         array('backend' => 'mail',
126               'params' => null,
127               'domain_check' => true),
128         'nickname' =>
129         array('blacklist' => array(),
130               'featured' => array()),
131         'profile' =>
132         array('banned' => array(),
133               'biolimit' => null,
134               'changenick' => false,
135               'allowprivate' => false,  // whether to allow setting stream to private ("only followers can read")
136               'backup' => false,    // can cause DoS, so should be done via CLI
137               'restore' => false,
138               'delete' => false,
139               'move' => true),
140         'image' =>
141         array('jpegquality' => 85),
142         'avatar' =>
143         array('server' => null,
144               'dir' => INSTALLDIR . '/avatar/',
145               'path' => $_path . '/avatar/',
146               'ssl' => null,
147               'maxsize' => 300),
148         'foaf' =>
149         array(
150               'mbox_sha1sum' => false,
151             ),
152         'public' =>
153         array('localonly' => false,
154               'blacklist' => array(),
155               'autosource' => array()),
156         'theme' =>
157         array('server' => null,
158               'dir' => null,
159               'path'=> null,
160               'ssl' => null),
161         'usertheme' =>
162         array('linkcolor' => 'black',
163               'backgroundcolor' => 'black'),
164         'theme_upload' =>
165         array('enabled' => extension_loaded('zip')),
166         'javascript' =>
167         array('server' => null,
168               'path'=> null,
169               'ssl' => null,
170               'bustframes' => true),
171         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
172         array('server' => null,
173               'dir' => null,
174               'path' => null,
175               'ssl' => null),
176         'throttle' =>
177         array('enabled' => false, // whether to throttle edits; false by default
178               'count' => 20, // number of allowed messages in timespan
179               'timespan' => 600), // timespan for throttling
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' => sys_get_temp_dir(),
190               'user' => false,
191               'group' => false),
192         'emailpost' =>
193         array('enabled' => false),
194         'sms' =>
195         array('enabled' => false),
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         'linkify' => array(
216             // "bare" below means "without schema", like domain.com vs. https://domain.com
217             'bare_domains' => false,  // convert domain.com to <a href="http://domain.com/" ...>domain.com</a> ?
218             'bare_ipv4' => false,   // convert IPv4 addresses to hyperlinks?
219             'bare_ipv6' => false,   // convert IPv6 addresses to hyperlinks?
220         ),
221         'attachments' =>
222         array('server' => null,
223               'dir' => INSTALLDIR . '/file/',
224               'path' => $_path . '/file/',
225               'sslserver' => null,
226               'sslpath' => null,
227               'ssl' => null,
228               'supported' => array(
229                                 'application/vnd.oasis.opendocument.chart'                  => 'odc',
230                                 'application/vnd.oasis.opendocument.formula'                => 'odf',
231                                 'application/vnd.oasis.opendocument.graphics'               => 'odg',
232                                 'application/vnd.oasis.opendocument.graphics-template'      => 'otg',
233                                 'application/vnd.oasis.opendocument.image'                  => 'odi',
234                                 'application/vnd.oasis.opendocument.presentation'           => 'odp',
235                                 'application/vnd.oasis.opendocument.presentation-template'  => 'otp',
236                                 'application/vnd.oasis.opendocument.spreadsheet'            => 'ods',
237                                 'application/vnd.oasis.opendocument.spreadsheet-template'   => 'ots',
238                                 'application/vnd.oasis.opendocument.text'                   => 'odt',
239                                 'application/vnd.oasis.opendocument.text-master'            => 'odm',
240                                 'application/vnd.oasis.opendocument.text-template'          => 'ott',
241                                 'application/vnd.oasis.opendocument.text-web'               => 'oth',
242                                 'application/pdf'   => 'pdf',
243                                 'application/zip'   => 'zip',
244                                 'application/xml'   => 'xml',
245                                 'image/png'         => 'png',
246                                 'image/jpeg'        => 'jpg',
247                                 'image/gif'         => 'gif',
248                                 'image/svg+xml'     => 'svg',
249                                 'image/vnd.microsoft.icon'  => 'ico',
250                                 'audio/ogg'         => 'ogg',
251                                 'audio/mpeg'        => 'mpg',
252                                 'audio/x-speex'     => 'spx',
253                                 'application/ogg'   => 'ogx',
254                                 'text/plain'        => 'txt',
255                                 'video/mpeg'        => 'mpeg',
256                                 'video/mp4'         => 'mp4',
257                                 'video/ogg'         => 'ogv',
258                                 'video/quicktime'   => 'mov',
259                                 'video/webm'        => 'webm',
260                                 ),
261               'file_quota' => 5000000,
262               'user_quota' => 50000000,
263               'monthly_quota' => 15000000,
264               'uploads' => true,
265               'filename_base' => 'hash',   // for new files, choose one: 'upload', 'hash'
266               'show_html' => false,  // show (filtered) text/html attachments (and oEmbed HTML etc.). Doesn't affect AJAX calls.
267               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
268               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
269               ),
270         'thumbnail' =>
271         array('crop' => false,      // overridden to true if thumb height === null
272               'maxsize' => 1000,     // thumbs with an edge larger than this will not be generated
273               'width' => 450,
274               'height' => 600,
275               'upscale' => false,
276               'animated' => false), // null="UseFileAsThumbnail", false="can use still frame". true requires ImageMagickPlugin
277         'application' =>
278         array('desclimit' => null),
279         'group' =>
280         array('maxaliases' => 3,
281               'desclimit' => null,
282               'addtag' => false),
283         'peopletag' =>
284         array('maxtags' => 100, // maximum number of tags a user can create.
285               'maxpeople' => 500, // maximum no. of people with the same tag by the same user
286               'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true)
287               'desclimit' => null),
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         'htmlfilter' => array(  // purify HTML through HTMLPurifier
295             'img' => true,
296             'video' => true,
297             'audio' => true,
298         ),
299         'notice' =>
300         array('contentlimit' => null,
301               'allowprivate' => false,  // whether to allow users to "check the padlock" to publish notices available for their subscribers.
302               'defaultscope' => null, // null means 1 if site/private, 0 otherwise
303               'hidespam' => true), // Whether to hide silenced users from timelines
304         'message' =>
305         array('contentlimit' => null),
306         'location' =>
307         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
308               'sharedefault' => false),
309         'logincommand' =>
310         array('disabled' => true),
311         'plugins' =>
312         array('core' => array(
313                             'ActivityVerb' => array(),
314                             'ActivityVerbPost' => array(),
315                             'ActivityModeration' => array(),
316                             'AuthCrypt' => array(),
317                             'Cronish' => array(),
318                             'Favorite' => array(),
319                             'HTMLPurifierSchemes' => array(),
320                             'Share' => array(),
321                             'LRDD' => array(),
322                         ),
323               'default' => array(
324                             'Activity' => array(),
325                             'AntiBrute' => array(),
326                             'Bookmark' => array(),
327                             'ClientSideShorten' => array(),
328                             'DefaultLayout' => array(),
329                             'Directory' => array(),
330                             'DirectMessage' => array(),
331                             'EmailAuthentication' => array(),
332                             'Event' => array(),
333                             'Oembed' => array(),
334                             'OpenID' => array(),
335                             'OpportunisticQM' => array(),
336                             'OStatus' => array(),
337                             'Poll' => array(),
338                             'SearchSub' => array(),
339                             'SimpleCaptcha' => array(),
340                             'TagSub' => array(),
341                             'WebFinger' => array(),
342                         ),
343               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
344               'server' => null,
345               'sslserver' => null,
346               'path' => null,
347               'sslpath' => null,
348               ),
349         'admin' =>
350         array('panels' => array('site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
351         'singleuser' =>
352         array('enabled' => false,
353               'nickname' => null),
354         'robotstxt' =>
355         array('crawldelay' => 0,
356               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
357               ),
358         'api' =>
359         array('realm' => null),
360         'nofollow' =>
361         array('subscribers' => true,
362               'members' => true,
363               'peopletag' => true,
364               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
365         'url' =>
366         array('shortener' => 'internal',
367               'maxurllength' => 100,
368               'maxnoticelength' => -1),
369         'http' => // HTTP client settings when contacting other sites
370         array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') (this activates "ssl_verify_peer")
371               'ssl_verify_host' => true,    // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl
372               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
373               'connect_timeout' => 5,
374               'proxy_host' => null,
375               'proxy_port' => null,
376               'proxy_user' => null,
377               'proxy_password' => null,
378               'proxy_auth_scheme' => null,
379               ),
380         'router' =>
381         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
382         'discovery' =>
383           array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
384         'performance' => array('high' => false) // disable some features for higher performance; default false
385     );