]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/default.php
NoAcctUriException->profile not $e directly
[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         'syslog' =>
85         array('appname' => 'statusnet', # for syslog
86               'priority' => 'debug', # XXX: currently ignored
87               'facility' => LOG_USER),
88         'queue' =>
89         array('enabled' => true,
90               'daemon' => false, # Use queuedaemon. Default to false
91               'subsystem' => 'db', # default to database, or 'stomp'
92               'stomp_server' => null,
93               'queue_basename' => '/queue/statusnet/',
94               'control_channel' => '/topic/statusnet/control', // broadcasts to all queue daemons
95               'stomp_username' => null,
96               'stomp_password' => null,
97               'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
98               'stomp_transactions' => true, // use STOMP transactions to aid in detecting failures (supported by ActiveMQ, but not by all)
99               'stomp_acks' => true, // send acknowledgements after successful processing (supported by ActiveMQ, but not by all)
100               'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
101               'monitor' => null, // URL to monitor ping endpoint (work in progress)
102               'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
103               'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
104               'debug_memory' => false, // true to spit memory usage to log
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' => 'https://creativecommons.org/licenses/by/3.0/',
119               'title' => 'Creative Commons Attribution 3.0',
120               'image' => $_path . '/theme/licenses/cc_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               'changenick' => false,
132               'allowprivate' => false,  // whether to allow setting stream to private ("only followers can read")
133               'backup' => false,    // can cause DoS, so should be done via CLI
134               'restore' => false,
135               'delete' => false,
136               'move' => true),
137         'image' =>
138         array('jpegquality' => 85),
139         'avatar' =>
140         array('server' => null,
141               'dir' => INSTALLDIR . '/avatar/',
142               'path' => $_path . '/avatar/',
143               'ssl' => null,
144               'maxsize' => 300),
145         'public' =>
146         array('localonly' => false,
147               'blacklist' => array(),
148               'autosource' => array()),
149         'theme' =>
150         array('server' => null,
151               'dir' => null,
152               'path'=> null,
153               'ssl' => null),
154         'usertheme' =>
155         array('linkcolor' => 'black',
156               'backgroundcolor' => 'black'),
157         'theme_upload' =>
158         array('enabled' => extension_loaded('zip')),
159         'javascript' =>
160         array('server' => null,
161               'path'=> null,
162               'ssl' => null,
163               'bustframes' => true),
164         'local' => // To override path/server for themes in 'local' dir (not currently applied to local plugins)
165         array('server' => null,
166               'dir' => null,
167               'path' => null,
168               'ssl' => null),
169         'throttle' =>
170         array('enabled' => false, // whether to throttle edits; false by default
171               'count' => 20, // number of allowed messages in timespan
172               'timespan' => 600), // timespan for throttling
173         'invite' =>
174         array('enabled' => true),
175         'tag' =>
176         array('dropoff' => 864000.0,   # controls weighting based on age
177               'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
178         'popular' =>
179         array('dropoff' => 864000.0,   # controls weighting based on age
180               'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
181         'daemon' =>
182         array('piddir' => sys_get_temp_dir(),
183               'user' => false,
184               'group' => false),
185         'emailpost' =>
186         array('enabled' => false),
187         'sms' =>
188         array('enabled' => false),
189         'twitterimport' =>
190         array('enabled' => false),
191         'integration' =>
192         array('source' => 'StatusNet', # source attribute for Twitter
193               'taguri' => null), # base for tag URIs
194         'twitter' =>
195         array('signin' => true,
196               'consumer_key' => null,
197               'consumer_secret' => null),
198         'cache' =>
199         array('base' => null),
200         'ping' =>
201         array('notify' => array(),
202               'timeout' => 2),
203         'inboxes' =>
204         array('enabled' => true), # ignored after 0.9.x
205         'newuser' =>
206         array('default' => null,
207               'welcome' => null),
208         'linkify' => array(
209             // "bare" below means "without schema", like domain.com vs. https://domain.com
210             'bare_domains' => false,  // convert domain.com to <a href="http://domain.com/" ...>domain.com</a> ?
211             'bare_ipv4' => false,   // convert IPv4 addresses to hyperlinks?
212             'bare_ipv6' => false,   // convert IPv6 addresses to hyperlinks?
213         ),
214         'attachments' =>
215         array('server' => null,
216               'dir' => INSTALLDIR . '/file/',
217               'path' => $_path . '/file/',
218               'sslserver' => null,
219               'sslpath' => null,
220               'ssl' => null,
221               'supported' => array(
222                                 'application/vnd.oasis.opendocument.chart'                  => 'odc',
223                                 'application/vnd.oasis.opendocument.formula'                => 'odf',
224                                 'application/vnd.oasis.opendocument.graphics'               => 'odg',
225                                 'application/vnd.oasis.opendocument.graphics-template'      => 'otg',
226                                 'application/vnd.oasis.opendocument.image'                  => 'odi',
227                                 'application/vnd.oasis.opendocument.presentation'           => 'odp',
228                                 'application/vnd.oasis.opendocument.presentation-template'  => 'otp',
229                                 'application/vnd.oasis.opendocument.spreadsheet'            => 'ods',
230                                 'application/vnd.oasis.opendocument.spreadsheet-template'   => 'ots',
231                                 'application/vnd.oasis.opendocument.text'                   => 'odt',
232                                 'application/vnd.oasis.opendocument.text-master'            => 'odm',
233                                 'application/vnd.oasis.opendocument.text-template'          => 'ott',
234                                 'application/vnd.oasis.opendocument.text-web'               => 'oth',
235                                 'application/pdf'   => 'pdf',
236                                 'application/zip'   => 'zip',
237                                 'application/xml'   => 'xml',
238                                 'image/png'         => 'png',
239                                 'image/jpeg'        => 'jpg',
240                                 'image/gif'         => 'gif',
241                                 'image/svg+xml'     => 'svg',
242                                 'image/vnd.microsoft.icon'  => 'ico',
243                                 'audio/ogg'         => 'ogg',
244                                 'audio/mpeg'        => 'mpg',
245                                 'audio/x-speex'     => 'spx',
246                                 'application/ogg'   => 'ogx',
247                                 'text/plain'        => 'txt',
248                                 'video/mpeg'        => 'mpeg',
249                                 'video/mp4'         => 'mp4',
250                                 'video/ogg'         => 'ogv',
251                                 'video/quicktime'   => 'mov',
252                                 'video/webm'        => 'webm',
253                                 ),
254               'file_quota' => 5000000,
255               'user_quota' => 50000000,
256               'monthly_quota' => 15000000,
257               'uploads' => true,
258               'filename_base' => 'hash',   // for new files, choose one: 'upload', 'hash'
259               'show_html' => false,  // show (filtered) text/html attachments (and oEmbed HTML etc.). Doesn't affect AJAX calls.
260               'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
261               'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
262               ),
263         'thumbnail' =>
264         array('crop' => false,      // overridden to true if thumb height === null
265               'maxsize' => 1000,     // thumbs with an edge larger than this will not be generated
266               'width' => 450,
267               'height' => 600,
268               'upscale' => false,
269               'animated' => false), // null="UseFileAsThumbnail", false="can use still frame". true requires ImageMagickPlugin
270         'application' =>
271         array('desclimit' => null),
272         'group' =>
273         array('maxaliases' => 3,
274               'desclimit' => null,
275               'addtag' => false),
276         'peopletag' =>
277         array('maxtags' => 100, // maximum number of tags a user can create.
278               'maxpeople' => 500, // maximum no. of people with the same tag by the same user
279               'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true)
280               'desclimit' => null),
281         'search' =>
282         array('type' => 'like'),
283         'sessions' =>
284         array('handle' => false,   // whether to handle sessions ourselves
285               'debug' => false,    // debugging output for sessions
286               'gc_limit' => 1000), // max sessions to expire at a time
287         'htmlfilter' => array(  // purify HTML through HTMLPurifier
288             'img' => true,
289             'video' => true,
290             'audio' => true,
291         ),
292         'notice' =>
293         array('contentlimit' => null,
294               'allowprivate' => false,  // whether to allow users to "check the padlock" to publish notices available for their subscribers.
295               'defaultscope' => null, // null means 1 if site/private, 0 otherwise
296               'hidespam' => true), // Whether to hide silenced users from timelines
297         'message' =>
298         array('contentlimit' => null),
299         'location' =>
300         array('share' => 'user', // whether to share location; 'always', 'user', 'never'
301               'sharedefault' => false),
302         'logincommand' =>
303         array('disabled' => true),
304         'plugins' =>
305         array('core' => array(
306                             'ActivityVerb' => array(),
307                             'ActivityVerbPost' => array(),
308                             'ActivityModeration' => array(),
309                             'AuthCrypt' => array(),
310                             'Cronish' => array(),
311                             'Favorite' => array(),
312                             'HTMLPurifierSchemes' => array(),
313                             'Share' => array(),
314                             'LRDD' => array(),
315                         ),
316               'default' => array(
317                             'Activity' => array(),
318                             'AntiBrute' => array(),
319                             'Bookmark' => array(),
320                             'ClientSideShorten' => array(),
321                             'DefaultLayout' => array(),
322                             'Directory' => array(),
323                             'DirectMessage' => array(),
324                             'EmailAuthentication' => array(),
325                             'Event' => array(),
326                             'Oembed' => array(),
327                             'OpenID' => array(),
328                             'OpportunisticQM' => array(),
329                             'OStatus' => array(),
330                             'Poll' => array(),
331                             'SearchSub' => array(),
332                             'SimpleCaptcha' => array(),
333                             'TagSub' => array(),
334                             'WebFinger' => array(),
335                         ),
336               'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
337               'server' => null,
338               'sslserver' => null,
339               'path' => null,
340               'sslpath' => null,
341               ),
342         'admin' =>
343         array('panels' => array('site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license', 'plugins')),
344         'singleuser' =>
345         array('enabled' => false,
346               'nickname' => null),
347         'robotstxt' =>
348         array('crawldelay' => 0,
349               'disallow' => array('main', 'settings', 'admin', 'search', 'message')
350               ),
351         'api' =>
352         array('realm' => null),
353         'nofollow' =>
354         array('subscribers' => true,
355               'members' => true,
356               'peopletag' => true,
357               'external' => 'sometimes'), // Options: 'sometimes', 'never', default = 'sometimes'
358         'url' =>
359         array('shortener' => 'internal',
360               'maxurllength' => 100,
361               'maxnoticelength' => -1),
362         'http' => // HTTP client settings when contacting other sites
363         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")
364               'ssl_verify_host' => true,    // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl
365               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
366               'connect_timeout' => 5,
367               'proxy_host' => null,
368               'proxy_port' => null,
369               'proxy_user' => null,
370               'proxy_password' => null,
371               'proxy_auth_scheme' => null,
372               ),
373         'router' =>
374         array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
375         'discovery' =>
376           array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.)
377         'performance' => array('high' => false) // disable some features for higher performance; default false
378     );